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
c6ad9f82
Commit
c6ad9f82
authored
Aug 12, 2022
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.字典脚本维护
2.发送手机验证码时 进行手机号是否已经注册 平台增加接口
parent
7b0d6959
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
185 additions
and
2 deletions
+185
-2
DataDictionaryController.java
.../boot/biz/common/controller/DataDictionaryController.java
+1
-1
RegUnitInfoController.java
.../module/tzs/flc/biz/controller/RegUnitInfoController.java
+8
-1
RegUnitInfoServiceImpl.java
...dule/tzs/flc/biz/service/impl/RegUnitInfoServiceImpl.java
+1
-0
tzs-1.0.0.1.xml
...e-tzs-biz/src/main/resources/db/changelog/tzs-1.0.0.1.xml
+170
-0
pom.xml
amos-boot-system-tzs/pom.xml
+5
-0
No files found.
amos-boot-biz-common/src/main/java/com/yeejoin/amos/boot/biz/common/controller/DataDictionaryController.java
View file @
c6ad9f82
...
...
@@ -202,7 +202,7 @@ public class DataDictionaryController extends BaseController {
}
}
@TycloudOperation
(
needAuth
=
tru
e
,
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
needAuth
=
fals
e
,
ApiLevel
=
UserType
.
AGENCY
)
@RequestMapping
(
value
=
"/dataDictionary"
,
method
=
RequestMethod
.
GET
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据字典类型查询字典2"
,
notes
=
"根据字典类型查询字典2"
)
public
ResponseModel
<
Object
>
getDictionary
(
@RequestParam
String
type
)
throws
Exception
{
...
...
amos-boot-system-tzs/amos-boot-module-tzs-biz/src/main/java/com/yeejoin/amos/boot/module/tzs/flc/biz/controller/RegUnitInfoController.java
View file @
c6ad9f82
package
com
.
yeejoin
.
amos
.
boot
.
module
.
tzs
.
flc
.
biz
.
controller
;
import
com.baomidou.mybatisplus.extension.api.R
;
import
com.yeejoin.amos.boot.biz.common.controller.BaseController
;
import
com.yeejoin.amos.boot.biz.common.entity.DataDictionary
;
import
com.yeejoin.amos.boot.biz.common.utils.RedisKey
;
import
com.yeejoin.amos.boot.biz.common.utils.RedisUtils
;
import
com.yeejoin.amos.boot.module.tzs.api.service.IRegUnitInfoService
;
import
com.yeejoin.amos.boot.module.tzs.flc.api.dto.RegUnitInfoDto
;
import
com.yeejoin.amos.component.feign.model.FeignClientResult
;
import
com.yeejoin.amos.feign.privilege.Privilege
;
import
com.yeejoin.amos.feign.privilege.model.AgencyUserModel
;
import
com.yeejoin.amos.feign.privilege.model.CompanyModel
;
...
...
@@ -97,6 +99,11 @@ public class RegUnitInfoController extends BaseController {
if
(
ValidationUtil
.
isEmpty
(
tel
))
{
throw
new
BadRequest
(
"手机号不能为空"
);
}
try
{
Privilege
.
authClient
.
mobileVerify
(
tel
);
}
catch
(
Exception
e
)
{
throw
new
RuntimeException
(
"该手机号已注册!"
);
}
Boolean
flag
;
HashMap
<
String
,
String
>
params
=
new
HashMap
<>();
String
code
=
this
.
getRandomCode
();
...
...
@@ -158,7 +165,7 @@ public class RegUnitInfoController extends BaseController {
}
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
,
needAuth
=
false
)
@DeleteMapping
(
value
=
"/{unitCode}/logOut"
)
@ApiOperation
(
httpMethod
=
"DELETE"
,
value
=
"企业注销"
,
notes
=
"企业注销"
)
public
ResponseModel
unitLogOut
(
@PathVariable
String
unitCode
){
...
...
amos-boot-system-tzs/amos-boot-module-tzs-biz/src/main/java/com/yeejoin/amos/boot/module/tzs/flc/biz/service/impl/RegUnitInfoServiceImpl.java
View file @
c6ad9f82
...
...
@@ -199,6 +199,7 @@ public class RegUnitInfoServiceImpl extends BaseService<RegUnitInfoDto, RegUnitI
@Override
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
Boolean
unitLogOut
(
String
unitCode
)
{
tzsAuthServiceImpl
.
setRequestContext
();
RegUnitInfo
regUnitInfo
=
this
.
getOne
(
new
LambdaQueryWrapper
<
RegUnitInfo
>().
eq
(
RegUnitInfo:
:
getUnitCode
,
unitCode
));
if
(
regUnitInfo
==
null
){
return
Boolean
.
FALSE
;
...
...
amos-boot-system-tzs/amos-boot-module-tzs-biz/src/main/resources/db/changelog/tzs-1.0.0.1.xml
View file @
c6ad9f82
...
...
@@ -154,5 +154,175 @@
REPLACE INTO `cb_data_dictionary` (`sequence_nbr`, `code`, `name`, `type`, `type_desc`, `parent`, `rec_user_name`, `rec_user_id`, `rec_date`, `is_delete`, `sort_num`) VALUES ('1232', '1232', '使用单位', 'UNIT_TYPE_NEW', 'studio_normalapp_3663181,studio_normalapp_3654033,studio_normalapp_3404492,studio_normalapp_3404491', NULL, NULL, NULL, NULL, b'0', '1');
</sql>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1660201816131-05"
>
<comment>
单位注册使用到的字典 登记机关
</comment>
<sql>
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1300, "1300","榆林市行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1301, "1301","延安市行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1302, "1302","铜川市行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1303, "1303","商洛市行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1304, "1304","韩城市行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1305, "1305","杨凌市市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1306, "1306","安康市汉滨区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1307, "1307","安康市汉阴县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1308, "1308","安康市白河县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1309, "1309","延安市行政审批服务批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1310, "1310","西安市碑林区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1311, "1311","西安市雁塔区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1312, "1312","西安市临潼区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1313, "1313","西安市高陵区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1314, "1314","西安市鄠邑区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1315, "1315","渭南市临渭区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1316, "1316","渭南市华州区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1317, "1317","渭南市高新区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1318, "1318","渭南市潼关县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1319, "1319","渭南市大荔县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1320, "1320","渭南市蒲城县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1321, "1321","渭南市合阳县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1322, "1322","渭南市富平县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1323, "1323","渭南市华阴市行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1324, "1324","宝鸡市金台区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1325, "1325","宝鸡市渭滨区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1326, "1326","宝鸡市陈仓区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1327, "1327","宝鸡市凤翔区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1328, "1328","宝鸡市岐山县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1329, "1329","宝鸡市扶风县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1330, "1330","宝鸡市眉县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1331, "1331","宝鸡市陇县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1332, "1332","宝鸡市千阳县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1333, "1333","宝鸡市麟游县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1334, "1334","宝鸡市凤县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1335, "1335","宝鸡市太白县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1336, "1336","榆林市神木行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1337, "1337","咸阳市秦都区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1338, "1338","咸阳市渭城区行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1339, "1339","咸阳市兴平市行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1340, "1340","咸阳市彬州市行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1341, "1341","咸阳市三原县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1342, "1342","咸阳市泾阳县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1343, "1343","咸阳市乾县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1344, "1344","咸阳市礼泉县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1345, "1345","咸阳市永寿县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1346, "1346","咸阳市长武县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1347, "1347","咸阳市旬邑县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1348, "1348","咸阳市淳化县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1349, "1349","咸阳市武功县行政审批局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1350, "1350","西安市新城区市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1351, "1351","西安市莲湖区市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1352, "1352","西安市灞桥区市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1353, "1353","西安市未央区市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1354, "1354","西安市阎良区市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1355, "1355","西安市长安区市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1356, "1356","西安市蓝田县市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1357, "1357","西安市周至县市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1358, "1358","西安市市场监督管理局高新区分局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1359, "1359","西安市市场监督管理局经开区分局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1360, "1360","西安市市场监督管理局港务浐灞分局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1361, "1361","西安市市场监督管理局曲江新区分局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1362, "1362","西咸新区市场监督管理局沣东新城分局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1363, "1363","西咸新区市场监督管理局沣西新城分局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1364, "1364","西咸新区市场监督管理局秦汉新城分局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1365, "1365","西咸新区市场监督管理局空港新城分局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1366, "1366","西咸新区市场监督管理局泾河新城分局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1367, "1367","汉中市汉台区市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1368, "1368","汉中市南郑区市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1369, "1369","汉中市城固县市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1370, "1370","汉中市洋县市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1371, "1371","汉中市西乡县市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1372, "1372","汉中市勉县市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1373, "1373","汉中市宁强县市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1374, "1374","汉中市略阳县市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1375, "1375","汉中市镇巴县市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1376, "1376","汉中市留坝县市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1377, "1377","汉中市佛坪县市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1378, "1378","汉中市府谷市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1379, "1379","安康市汉滨区市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1380, "1380","安康市高新区市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1381, "1381","安康市石泉县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1382, "1382","安康市宁陕县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1383, "1383","安康市岚皋县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1384, "1384","安康市紫阳县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1385, "1385","安康市旬阳县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1386, "1386","安康市平利县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1387, "1387","安康市镇坪县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1388, "1388","安康市恒口示范区应急管理和市场监督管理局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1389, "1389","渭南市经开区市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1390, "1390","渭南市白水县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1391, "1391","渭南市澄城县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1392, "1392","榆林府谷县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1393, "1393","咸阳市秦都区市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1394, "1394","咸阳市渭城区市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1395, "1395","咸阳市兴平市市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1396, "1396","咸阳市彬州市市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1397, "1397","咸阳市三原县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1398, "1398","咸阳市泾阳县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1399, "1399","咸阳市乾县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1400, "1400","咸阳市礼泉县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1401, "1401","咸阳市永寿县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1402, "1402","咸阳市长武县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1403, "1403","咸阳市旬邑县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1404, "1404","咸阳市淳化县市场监管局","DJJG",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1405, "1405","咸阳市武功县市场监管局","DJJG",b'0',1);
</sql>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1660201816131-06"
>
<comment>
单位注册使用到的字典 充装介质名称
</comment>
<sql>
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1500, "01","工业用氧","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1501, "02","医用氧","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1502, "03","高纯氧","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1503, "04","电子工业用气体:氧","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1504, "05","工业氮","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1505, "06","纯氮","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1506, "07","高纯氮","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1507, "08","电子工业用气体:氮","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1508, "09","纯氩","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1509, "10","高纯氩","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1510, "11","电子工业用气体:氩","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1511, "12","灯泡用氩气(Ar+N2)","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1512, "13","工业氢","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1513, "14","纯氢、高纯氢、超纯氢","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1514, "15","电子工业用气体:氢","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1515, "16","食品添加剂:液体二氧化碳","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1516, "17","工业液体二氧化碳","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1517, "18","焊接用二氧化碳","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1518, "19","工业氦气","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1519, "20","纯氦","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1520, "21","高纯氦","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1521, "22","电子工业用气体:氦","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1522, "23","氙气","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1523, "24","氪气","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1524, "25","氖气","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1525, "26","电子工业用气体:氧化亚氮","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1526, "27","医用氧化亚氮","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1527, "28","电子工业用气体:氯化氢","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1528, "29","电子工业用气体:三氟化碳","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1529, "30","电子工业用气体:磷化氢","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1530, "31","电子工业用气体:硅烷","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1531, "32","纯甲烷","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1532, "33","焊接切割用燃气:丙烷","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1533, "34","焊接切割用燃气:丙稀","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1534, "35","氨","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1535, "36","氯","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1536, "37","工业用液化石油气","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1537, "38","民用液化石油气","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1538, "39","一氧化碳","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1539, "40","乙炔","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1540, "41","液氧(焊接绝热气瓶)","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1541, "42","液氩(焊接绝热气瓶)","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1542, "43","液氮(焊接绝热气瓶)","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1543, "44","低温液体二氧化碳(焊接绝热气瓶)","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1544, "45","液化天然气(焊接绝热气瓶)","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1545, "46","液化天然气(车用气瓶)","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1546, "47","压缩天然气(车用气瓶)","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1547, "48","压缩天然气","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1548, "49","工业用乙烯","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1549, "50","毒性混合气体","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1550, "51","氧化性混合气体","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1551, "52","燃烧性混合气体","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1552, "53","腐蚀性混合气体","CZJZMC",b'0',1);
REPLACE INTO `cb_data_dictionary`(`sequence_nbr`, `code`, `name`, `type`, `is_delete`, `sort_num`) VALUES (1553, "54","混合气体","CZJZMC",b'0',1);
</sql>
</changeSet>
</databaseChangeLog>
amos-boot-system-tzs/pom.xml
View file @
c6ad9f82
...
...
@@ -29,5 +29,10 @@
<artifactId>
commons-text
</artifactId>
<version>
1.9
</version>
</dependency>
<dependency>
<groupId>
com.yeejoin
</groupId>
<artifactId>
amos-feign-privilege
</artifactId>
<version>
1.7.11-SNAPSHOT
</version>
</dependency>
</dependencies>
</project>
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