Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
项目统一框架
amos-boot-biz
Commits
7e58aa67
Commit
7e58aa67
authored
Oct 31, 2024
by
麻笑宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
检验检测 / 检验检测人员统计
下钻代码修改
parent
656c87d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
DPFilterParamForDetailDto.java
...boot/module/common/api/dto/DPFilterParamForDetailDto.java
+13
-1
JYJCStatisticsMapper.xml
...cs-api/src/main/resources/mapper/JYJCStatisticsMapper.xml
+9
-0
No files found.
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/dto/DPFilterParamForDetailDto.java
View file @
7e58aa67
...
...
@@ -189,5 +189,17 @@ public class DPFilterParamForDetailDto {
/**
* 下次检验日期
*/
private
String
nextInspectionDate
;
private
String
nextInspectionDate
;
/**
* 姓名
*/
private
String
userName
;
/**
* 手机号
*/
private
String
phone
;
/**
* 证件号码
*/
private
String
certificateNum
;
}
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-api/src/main/resources/mapper/JYJCStatisticsMapper.xml
View file @
7e58aa67
...
...
@@ -222,6 +222,15 @@
bi.unit_type LIKE concat ( '%', #{item}, '%' )
</foreach>
</if>
<if
test=
"dpFilterParamDto.userName != null and dpFilterParamDto.userName != ''"
>
and tui.name LIKE concat ( '%', #{dpFilterParamDto.userName}, '%' )
</if>
<if
test=
"dpFilterParamDto.phone != null and dpFilterParamDto.phone != ''"
>
and tui.phone LIKE concat ( '%', #{dpFilterParamDto.phone}, '%' )
</if>
<if
test=
"dpFilterParamDto.certificateNum != null and dpFilterParamDto.certificateNum != ''"
>
and tui.certificate_num LIKE concat ( '%', #{dpFilterParamDto.certificateNum}, '%' )
</if>
group by tui.sequence_nbr
</select>
</mapper>
...
...
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