完成拉取本行信息后端实现与校验

This commit is contained in:
wkc
2026-03-11 17:16:34 +08:00
parent 52a5056a70
commit 9dd12d9ef0
9 changed files with 627 additions and 81 deletions

View File

@@ -30,13 +30,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<insert id="insertBatch" parameterType="java.util.List" useGeneratedKeys="true" keyProperty="id">
insert into ccdi_file_upload_record (
project_id, lsfx_project_id, file_name, file_size, file_status,
upload_time, upload_user
enterprise_names, account_nos, upload_time, upload_user
) values
<foreach collection="list" item="item" separator=",">
(
#{item.projectId}, #{item.lsfxProjectId}, #{item.fileName},
#{item.fileSize}, #{item.fileStatus}, #{item.uploadTime},
#{item.uploadUser}
#{item.fileSize}, #{item.fileStatus}, #{item.enterpriseNames},
#{item.accountNos}, #{item.uploadTime}, #{item.uploadUser}
)
</foreach>
</insert>