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
e6141d87
Commit
e6141d87
authored
Jun 18, 2025
by
tianbo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(tzs): 增加企业信息查询和用户信息查询功能
- 在 TzBaseEnterpriseInfoMapper.xml 中增加了对 regulatoryLabels 字段的特殊处理逻辑 - 在 TzsUserInfoMapper.xml 中添加了对用户岗位名称和权限状态的查询条件
parent
3fe57b20
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
TzBaseEnterpriseInfoMapper.xml
.../src/main/resources/mapper/TzBaseEnterpriseInfoMapper.xml
+9
-2
TzsUserInfoMapper.xml
...e-tcm-api/src/main/resources/mapper/TzsUserInfoMapper.xml
+4
-0
No files found.
amos-boot-system-tzs/amos-boot-module-jczs/amos-boot-module-jczs-api/src/main/resources/mapper/TzBaseEnterpriseInfoMapper.xml
View file @
e6141d87
...
...
@@ -130,8 +130,15 @@
test=
"tzBaseEnterpriseInfoDto.address!=null and tzBaseEnterpriseInfoDto.address!='' "
>
AND address LIKE CONCAT('%',#{tzBaseEnterpriseInfoDto.address},'%')
</if>
<if
test=
"tzBaseEnterpriseInfoDto.regulatoryLabels!=null and tzBaseEnterpriseInfoDto.regulatoryLabels!='' "
>
AND regulatory_labels LIKE CONCAT('%',#{tzBaseEnterpriseInfoDto.regulatoryLabels},'%')
<if
test=
"tzBaseEnterpriseInfoDto.regulatoryLabels != null and tzBaseEnterpriseInfoDto.regulatoryLabels != ''"
>
<choose>
<when
test=
'tzBaseEnterpriseInfoDto.regulatoryLabels != "0"'
>
AND regulatory_labels LIKE CONCAT('%', #{tzBaseEnterpriseInfoDto.regulatoryLabels}, '%')
</when>
<otherwise>
AND regulatory_labels IS NULL
</otherwise>
</choose>
</if>
<if
test=
"orgCodeList != null and !orgCodeList.isEmpty()"
>
...
...
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-api/src/main/resources/mapper/TzsUserInfoMapper.xml
View file @
e6141d87
...
...
@@ -310,6 +310,7 @@
u.certificate_num,
u.identification as identificationStr,
e.use_unit,
u.post_name,
u.sub_post_name,
u.new_post as post,
u.sequence_nbr as uid,
...
...
@@ -358,6 +359,9 @@
<if
test=
"filter.fullAddress != null and filter.fullAddress != ''"
>
and (a.fullAddress like concat('%',#{filter.fullAddress},'%'))
</if>
<if
test=
"filter.permissionStatus != null and filter.permissionStatus != ''"
>
and (a.permissionStatus like concat('%',#{filter.permissionStatus},'%'))
</if>
</where>
order by
<if
test=
"sort != 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