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
9fb41d9d
Commit
9fb41d9d
authored
Nov 10, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.17-续保周期
parent
ad6a7554
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
TAutoInsurRuleInfo.java
...loud/plus/v1/yifu/archives/entity/TAutoInsurRuleInfo.java
+8
-0
TAutoInsurRuleInfoMapper.xml
...iz/src/main/resources/mapper/TAutoInsurRuleInfoMapper.xml
+6
-1
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/entity/TAutoInsurRuleInfo.java
View file @
9fb41d9d
...
@@ -180,5 +180,13 @@ public class TAutoInsurRuleInfo extends BaseEntity {
...
@@ -180,5 +180,13 @@ public class TAutoInsurRuleInfo extends BaseEntity {
@ExcelProperty
(
"项目ID"
)
@ExcelProperty
(
"项目ID"
)
@Schema
(
description
=
"项目ID"
)
@Schema
(
description
=
"项目ID"
)
private
String
deptId
;
private
String
deptId
;
/**
* 续保周期——专门为续保使用的
*/
@ExcelAttribute
(
name
=
"续保周期"
)
@Length
(
max
=
2
,
message
=
"续保周期不能超过2个字符"
)
@ExcelProperty
(
"续保周期"
)
@Schema
(
description
=
"续保周期"
)
private
String
renewalPeriod
;
}
}
yifu-archives/yifu-archives-biz/src/main/resources/mapper/TAutoInsurRuleInfoMapper.xml
View file @
9fb41d9d
...
@@ -47,6 +47,7 @@
...
@@ -47,6 +47,7 @@
<result
property=
"updateTime"
column=
"UPDATE_TIME"
/>
<result
property=
"updateTime"
column=
"UPDATE_TIME"
/>
<result
property=
"deptNo"
column=
"DEPT_NO"
/>
<result
property=
"deptNo"
column=
"DEPT_NO"
/>
<result
property=
"deptId"
column=
"DEPT_ID"
/>
<result
property=
"deptId"
column=
"DEPT_ID"
/>
<result
property=
"renewalPeriod"
column=
"RENEWAL_PERIOD"
/>
</resultMap>
</resultMap>
<sql
id=
"Base_Column_List"
>
<sql
id=
"Base_Column_List"
>
a.ID,
a.ID,
...
@@ -71,7 +72,8 @@
...
@@ -71,7 +72,8 @@
a.UPDATE_BY,
a.UPDATE_BY,
a.UPDATE_TIME,
a.UPDATE_TIME,
a.DEPT_NO,
a.DEPT_NO,
a.DEPT_ID
a.DEPT_ID,
a.RENEWAL_PERIOD
</sql>
</sql>
<sql
id=
"tAutoInsurRuleInfo_where"
>
<sql
id=
"tAutoInsurRuleInfo_where"
>
<if
test=
"tAutoInsurRuleInfo != null"
>
<if
test=
"tAutoInsurRuleInfo != null"
>
...
@@ -144,6 +146,9 @@
...
@@ -144,6 +146,9 @@
<if
test=
"tAutoInsurRuleInfo.deptId != null and tAutoInsurRuleInfo.deptId.trim() != ''"
>
<if
test=
"tAutoInsurRuleInfo.deptId != null and tAutoInsurRuleInfo.deptId.trim() != ''"
>
AND a.DEPT_ID = #{tAutoEmpRuleInfo.deptId}
AND a.DEPT_ID = #{tAutoEmpRuleInfo.deptId}
</if>
</if>
<if
test=
"tAutoInsurRuleInfo.renewalPeriod != null and tAutoInsurRuleInfo.renewalPeriod.trim() != ''"
>
AND a.RENEWAL_PERIOD = #{tAutoEmpRuleInfo.renewalPeriod}
</if>
</if>
</if>
</sql>
</sql>
<!--tAutoInsurRuleInfo简单分页查询-->
<!--tAutoInsurRuleInfo简单分页查询-->
...
...
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