Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
48794bfc
Commit
48794bfc
authored
Jan 07, 2026
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
huych-入职确认信息编辑提交
parent
1f903468
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
TElectronicArchiveDetail.java
.../cloud/plus/v1/batch/entity/TElectronicArchiveDetail.java
+8
-0
ElectronicArchiveImportServiceImpl.java
...atch/service/impl/ElectronicArchiveImportServiceImpl.java
+3
-0
TElectronicArchiveDetailMapper.xml
.../main/resources/mapper/TElectronicArchiveDetailMapper.xml
+3
-1
No files found.
yifu-batch/yifu-batch-api/src/main/java/com/yifu/cloud/plus/v1/batch/entity/TElectronicArchiveDetail.java
View file @
48794bfc
...
@@ -59,6 +59,14 @@ public class TElectronicArchiveDetail extends BaseEntity {
...
@@ -59,6 +59,14 @@ public class TElectronicArchiveDetail extends BaseEntity {
@Schema
(
description
=
"项目编码"
)
@Schema
(
description
=
"项目编码"
)
private
String
deptNo
;
private
String
deptNo
;
/**
* 项目ID
*/
@ExcelAttribute
(
name
=
"项目ID"
)
@ExcelProperty
(
"项目ID"
)
@Schema
(
description
=
"项目ID"
)
private
String
deptId
;
/**
/**
* 项目名称
* 项目名称
*/
*/
...
...
yifu-batch/yifu-batch-biz/src/main/java/com/yifu/cloud/plus/v1/batch/service/impl/ElectronicArchiveImportServiceImpl.java
View file @
48794bfc
...
@@ -261,6 +261,7 @@ public class ElectronicArchiveImportServiceImpl implements ElectronicArchiveImpo
...
@@ -261,6 +261,7 @@ public class ElectronicArchiveImportServiceImpl implements ElectronicArchiveImpo
detail
.
setEmpName
(
data
.
getEmpName
());
detail
.
setEmpName
(
data
.
getEmpName
());
detail
.
setEmpIdcard
(
data
.
getEmpIdcard
());
detail
.
setEmpIdcard
(
data
.
getEmpIdcard
());
detail
.
setDeptNo
(
data
.
getDeptNo
());
detail
.
setDeptNo
(
data
.
getDeptNo
());
detail
.
setDeptId
(
settleResult
.
getId
());
detail
.
setDeptName
(
data
.
getDeptName
());
detail
.
setDeptName
(
data
.
getDeptName
());
detail
.
setCustomerName
(
settleResult
.
getCustomerName
());
detail
.
setCustomerName
(
settleResult
.
getCustomerName
());
detail
.
setCustomerCode
(
settleResult
.
getCustomerCode
());
detail
.
setCustomerCode
(
settleResult
.
getCustomerCode
());
...
@@ -1346,6 +1347,7 @@ public class ElectronicArchiveImportServiceImpl implements ElectronicArchiveImpo
...
@@ -1346,6 +1347,7 @@ public class ElectronicArchiveImportServiceImpl implements ElectronicArchiveImpo
detail
.
setEmpIdcard
(
empIdcard
);
detail
.
setEmpIdcard
(
empIdcard
);
detail
.
setDeptNo
(
deptNo
);
detail
.
setDeptNo
(
deptNo
);
detail
.
setDeptName
(
deptName
);
detail
.
setDeptName
(
deptName
);
detail
.
setDeptId
(
settleResult
.
getId
());
detail
.
setCustomerName
(
settleResult
.
getCustomerName
());
detail
.
setCustomerName
(
settleResult
.
getCustomerName
());
detail
.
setCustomerCode
(
settleResult
.
getCustomerCode
());
detail
.
setCustomerCode
(
settleResult
.
getCustomerCode
());
detail
.
setMaterialType
(
materialType
);
detail
.
setMaterialType
(
materialType
);
...
@@ -1498,6 +1500,7 @@ public class ElectronicArchiveImportServiceImpl implements ElectronicArchiveImpo
...
@@ -1498,6 +1500,7 @@ public class ElectronicArchiveImportServiceImpl implements ElectronicArchiveImpo
detail
.
setEmpIdcard
(
empIdcard
);
detail
.
setEmpIdcard
(
empIdcard
);
detail
.
setDeptNo
(
deptNo
);
detail
.
setDeptNo
(
deptNo
);
detail
.
setDeptName
(
deptName
);
detail
.
setDeptName
(
deptName
);
detail
.
setDeptId
(
settleResult
.
getId
());
detail
.
setCustomerName
(
settleResult
.
getCustomerName
());
detail
.
setCustomerName
(
settleResult
.
getCustomerName
());
detail
.
setCustomerCode
(
settleResult
.
getCustomerCode
());
detail
.
setCustomerCode
(
settleResult
.
getCustomerCode
());
detail
.
setMaterialType
(
materialType
);
detail
.
setMaterialType
(
materialType
);
...
...
yifu-batch/yifu-batch-biz/src/main/resources/mapper/TElectronicArchiveDetailMapper.xml
View file @
48794bfc
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
<result
property=
"updateBy"
column=
"UPDATE_BY"
/>
<result
property=
"updateBy"
column=
"UPDATE_BY"
/>
<result
property=
"updateTime"
column=
"UPDATE_TIME"
/>
<result
property=
"updateTime"
column=
"UPDATE_TIME"
/>
<result
property=
"fileAddress"
column=
"FILE_ADDRESS"
/>
<result
property=
"fileAddress"
column=
"FILE_ADDRESS"
/>
<result
property=
"deptId"
column=
"DEPT_ID"
/>
</resultMap>
</resultMap>
<sql
id=
"Base_Column_List"
>
<sql
id=
"Base_Column_List"
>
a.ID,
a.ID,
...
@@ -44,7 +45,8 @@
...
@@ -44,7 +45,8 @@
a.CREATE_TIME,
a.CREATE_TIME,
a.UPDATE_BY,
a.UPDATE_BY,
a.UPDATE_TIME,
a.UPDATE_TIME,
a.FILE_ADDRESS
a.FILE_ADDRESS,
a.DEPT_ID
</sql>
</sql>
<sql
id=
"tElectronicArchiveDetail_where"
>
<sql
id=
"tElectronicArchiveDetail_where"
>
<if
test=
"tElectronicArchiveDetail != null"
>
<if
test=
"tElectronicArchiveDetail != null"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment