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
4c0d6276
Commit
4c0d6276
authored
Feb 28, 2025
by
chenyuxi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 不购买商险人员离职
parent
46680ef7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
121 additions
and
12 deletions
+121
-12
TInsuranceUnpurchasePerson.java
...lus/v1/yifu/salary/entity/TInsuranceUnpurchasePerson.java
+6
-0
TInsuranceUnpurchasePersonAddVo.java
...us/v1/yifu/salary/vo/TInsuranceUnpurchasePersonAddVo.java
+7
-0
TInsuranceUnpurchaseApplyServiceImpl.java
...ry/service/impl/TInsuranceUnpurchaseApplyServiceImpl.java
+103
-10
TInsuranceUnpurchasePersonMapper.xml
...ain/resources/mapper/TInsuranceUnpurchasePersonMapper.xml
+5
-2
No files found.
yifu-salary/yifu-salary-api/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/entity/TInsuranceUnpurchasePerson.java
View file @
4c0d6276
...
...
@@ -87,6 +87,12 @@ public class TInsuranceUnpurchasePerson extends BaseEntity {
@Schema
(
description
=
"申请状态 0 草稿 1待提交 2 待审核 3 审核通过 4 审核不通过"
)
private
String
status
;
/**
* 1.9.7版本新增:历史申请日期(流程通过)
* 陈宇茜
*/
private
String
historicalApplicationDate
;
/**
* 印章附件
*/
...
...
yifu-salary/yifu-salary-api/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/vo/TInsuranceUnpurchasePersonAddVo.java
View file @
4c0d6276
...
...
@@ -39,4 +39,11 @@ public class TInsuranceUnpurchasePersonAddVo implements Serializable {
@Schema
(
description
=
"错误信息"
)
private
String
message
;
/**
* 1.9.7版本新增:历史申请日期(流程通过)
* 陈宇茜
*/
private
String
historicalApplicationDate
;
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/impl/TInsuranceUnpurchaseApplyServiceImpl.java
View file @
4c0d6276
This diff is collapsed.
Click to expand it.
yifu-salary/yifu-salary-biz/src/main/resources/mapper/TInsuranceUnpurchasePersonMapper.xml
View file @
4c0d6276
...
...
@@ -30,6 +30,7 @@
<result
property=
"newLine"
column=
"NEW_LINE"
/>
<result
property=
"division"
column=
"DIVISION"
/>
<result
property=
"insuranceFlag"
column=
"INSURANCE_FLAG"
/>
<result
property=
"historicalApplicationDate"
column=
"HISTORICAL_APPLICATION_DATE"
/>
</resultMap>
<resultMap
id=
"tInsuranceUnpurchasePersonExportMap"
type=
"com.yifu.cloud.plus.v1.yifu.salary.vo.TInsuranceUnpurchasePersonVo"
>
...
...
@@ -73,7 +74,8 @@
a.HAS_CONTAIN_RISKS,
a.NEW_LINE,
a.DIVISION,
a.INSURANCE_FLAG
a.INSURANCE_FLAG,
a.HISTORICAL_APPLICATION_DATE
</sql>
<sql
id=
"tInsuranceUnpurchasePerson_where"
>
<if
test=
"tInsuranceUnpurchasePerson != null"
>
...
...
@@ -206,7 +208,8 @@
a.ID,
a.EMP_NAME empName,
a.EMP_IDCARD_NO empIdcardNo,
if(a.POST = '--','',post) post
if(a.POST = '--','',post) post,
a.HISTORICAL_APPLICATION_DATE
FROM t_insurance_unpurchase_person a
where a.PARNET_ID = #{id}
</select>
...
...
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