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
72304b6c
Commit
72304b6c
authored
Jul 14, 2022
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
createTimeEnd
parent
67857e3f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
TEmployeeContractInfo.java
...d/plus/v1/yifu/archives/entity/TEmployeeContractInfo.java
+8
-0
TEmployeeContractInfoMapper.xml
...src/main/resources/mapper/TEmployeeContractInfoMapper.xml
+7
-0
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/entity/TEmployeeContractInfo.java
View file @
72304b6c
...
@@ -446,4 +446,12 @@ public class TEmployeeContractInfo extends BaseEntity {
...
@@ -446,4 +446,12 @@ public class TEmployeeContractInfo extends BaseEntity {
@Schema
(
description
=
"导出的表头的Set"
)
@Schema
(
description
=
"导出的表头的Set"
)
private
Set
<
String
>
exportFields
;
private
Set
<
String
>
exportFields
;
@TableField
(
exist
=
false
)
@Schema
(
description
=
"创建时间起"
)
private
String
createTimeStart
;
@TableField
(
exist
=
false
)
@Schema
(
description
=
"创建时间止"
)
private
String
createTimeEnd
;
}
}
yifu-archives/yifu-archives-biz/src/main/resources/mapper/TEmployeeContractInfoMapper.xml
View file @
72304b6c
...
@@ -369,6 +369,13 @@
...
@@ -369,6 +369,13 @@
AND a.CONTRACT_SUB_NAME = #{tEmployeeContractInfo.contractSubName}
AND a.CONTRACT_SUB_NAME = #{tEmployeeContractInfo.contractSubName}
</if>
</if>
<if
test=
"tEmployeeContractInfo.createTimeStart != null and tEmployeeContractInfo.createTimeStart.trim() != ''"
>
AND a.CREATE_TIME >= #{tEmployeeContractInfo.createTimeStart}
</if>
<if
test=
"tEmployeeContractInfo.createTimeEnd != null and tEmployeeContractInfo.createTimeEnd.trim() != ''"
>
AND a.CREATE_TIME
<![CDATA[ <= ]]>
#{tEmployeeContractInfo.createTimeEnd}
</if>
</if>
</if>
</sql>
</sql>
<!--tEmployeeContractInfo简单分页查询-->
<!--tEmployeeContractInfo简单分页查询-->
...
...
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