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
e4cf9d4f
Commit
e4cf9d4f
authored
Nov 10, 2025
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(tcm): 监管删除启停用企业
1.停用状态的企业业务不进行查询
parent
1df61508
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
TzBaseEnterpriseInfoMapper.xml
.../src/main/resources/mapper/TzBaseEnterpriseInfoMapper.xml
+1
-1
TzsUserInfoMapper.xml
...e-tcm-api/src/main/resources/mapper/TzsUserInfoMapper.xml
+1
-0
CylinderAreaDataMapper.xml
...-api/src/main/resources/mapper/CylinderAreaDataMapper.xml
+5
-0
TzBaseEnterpriseInfoMapper.xml
.../src/main/resources/mapper/TzBaseEnterpriseInfoMapper.xml
+2
-1
No files found.
amos-boot-system-tzs/amos-boot-module-jczs/amos-boot-module-jczs-api/src/main/resources/mapper/TzBaseEnterpriseInfoMapper.xml
View file @
e4cf9d4f
...
...
@@ -200,7 +200,7 @@
</select>
<select
id=
"selectByUseUnit"
resultType=
"com.yeejoin.amos.boot.module.jczs.api.entity.TzBaseEnterpriseInfo"
>
select * from tz_base_enterprise_info where use_unit = #{useUnit}
select * from tz_base_enterprise_info where use_unit = #{useUnit}
and is_delete = false
</select>
<select
id=
"getOrgCodeByCompanyCode"
resultType=
"java.lang.String"
>
...
...
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-api/src/main/resources/mapper/TzsUserInfoMapper.xml
View file @
e4cf9d4f
...
...
@@ -212,6 +212,7 @@
WHERE tui.is_delete = 'f'
AND tui.amos_user_id is NOT null
AND tzei.unit_type IS NOT NULL
and tzei.is_delete = false
GROUP BY tui.amos_user_id
</select>
...
...
amos-boot-system-tzs/amos-boot-module-ymt/amos-boot-module-ymt-api/src/main/resources/mapper/CylinderAreaDataMapper.xml
View file @
e4cf9d4f
...
...
@@ -32,6 +32,7 @@
tz_base_enterprise_info cu
where
cu.data_sources = '陕西省内企业'
and cu.is_delete = false
AND cu.unit_type LIKE '%充装单位%'
and cu.org_code like concat('%', #{regionCode}, '%')
GROUP BY strKey
...
...
@@ -85,6 +86,7 @@
RIGHT JOIN tz_cylinder_info t1 ON t1.app_id = i.app_id
WHERE
i.data_sources = '陕西省内企业'
and i.is_delete = false
AND i.unit_type LIKE'%充装单位%'
AND i.industry_supervisor like concat(#{orgCode}, '%')
GROUP BY
...
...
@@ -103,6 +105,7 @@
RIGHT JOIN tz_cylinder_info t1 ON t1.app_id = i.app_id
WHERE
i.data_sources = '陕西省内企业'
and i.is_delete = false
AND i.unit_type LIKE'%充装单位%'
AND i.industry_supervisor like concat(#{orgCode}, '%')
GROUP BY
...
...
@@ -128,6 +131,7 @@
tz_base_enterprise_info i
WHERE
i.data_sources = '陕西省内企业'
and i.is_delete = false
AND i.unit_type LIKE'%充装单位%'
<if
test=
"orgCodes != null and orgCodes.size > 0"
>
AND
...
...
@@ -153,6 +157,7 @@
AND u.unit_type LIKE'%充装单位%'
AND ui.post like '%6552%'
and ui.is_delete = false
and u.is_delete = false
<if
test=
"orgCodes != null and orgCodes.size > 0"
>
AND
<foreach
collection=
"orgCodes"
open=
"("
item=
"orgCode"
close=
")"
separator=
" or "
>
...
...
amos-boot-system-tzs/amos-boot-module-ymt/amos-boot-module-ymt-api/src/main/resources/mapper/TzBaseEnterpriseInfoMapper.xml
View file @
e4cf9d4f
...
...
@@ -247,7 +247,7 @@
</select>
<select
id=
"selectByUseUnit"
resultType=
"com.yeejoin.amos.boot.module.ymt.api.entity.TzBaseEnterpriseInfo"
>
select * from tz_base_enterprise_info where use_unit = #{useUnit}
select * from tz_base_enterprise_info where use_unit = #{useUnit}
AND is_delete = '0'
</select>
<select
id=
"getInspectionUnitList"
resultType=
"com.yeejoin.amos.boot.module.ymt.api.dto.TzBaseEnterpriseInfoDto"
>
SELECT
...
...
@@ -261,6 +261,7 @@
tz_base_enterprise_info info
inner JOIN tz_jyjc_opening_application tjoa ON info.use_code = tjoa.unit_code
AND tjoa.status = '已完成'
AND info.is_delete = '0'
<if
test=
"openBizType != null and openBizType !=''"
>
and tjoa.open_biz_type = #{openBizType}
</if>
...
...
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