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
12a84b09
Commit
12a84b09
authored
May 24, 2024
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.自测bug修改
parent
147d3f7b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
7 deletions
+10
-7
DocumentEnum.java
...yeejoin/amos/boot/module/jyjc/api/enums/DocumentEnum.java
+1
-1
CommonController.java
...mos/boot/module/jyjc/biz/controller/CommonController.java
+2
-2
CommonserviceImpl.java
.../boot/module/jyjc/biz/service/impl/CommonserviceImpl.java
+2
-2
JyjcOpeningApplicationServiceImpl.java
...c/biz/service/impl/JyjcOpeningApplicationServiceImpl.java
+1
-1
TzBaseEnterpriseInfoMapper.java
...oot/module/ymt/api/mapper/TzBaseEnterpriseInfoMapper.java
+1
-1
TzBaseEnterpriseInfoMapper.xml
.../src/main/resources/mapper/TzBaseEnterpriseInfoMapper.xml
+3
-0
No files found.
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-api/src/main/java/com/yeejoin/amos/boot/module/jyjc/api/enums/DocumentEnum.java
View file @
12a84b09
...
@@ -44,7 +44,7 @@ public enum DocumentEnum {
...
@@ -44,7 +44,7 @@ public enum DocumentEnum {
AQBHZZ
(
"aqbhzz"
,
"安全保护装置的型式试验证书"
),
AQBHZZ
(
"aqbhzz"
,
"安全保护装置的型式试验证书"
),
ZJHG
(
"zjhg"
,
"自检合格证明"
),
ZJHG
(
"zjhg"
,
"自检合格证明"
),
AZJY
(
"azjy"
,
"安装监检报告"
),
AZJY
(
"azjy"
,
"安装监检报告"
),
ZJCY
(
"
azj
y"
,
"整机船运证明"
);
ZJCY
(
"
zjc
y"
,
"整机船运证明"
);
private
String
code
;
private
String
code
;
private
String
name
;
private
String
name
;
...
...
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/java/com/yeejoin/amos/boot/module/jyjc/biz/controller/CommonController.java
View file @
12a84b09
...
@@ -116,8 +116,8 @@ public class CommonController extends BaseController {
...
@@ -116,8 +116,8 @@ public class CommonController extends BaseController {
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/getInspectionUnitList"
)
@GetMapping
(
value
=
"/getInspectionUnitList"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"查询检验检测机构列表(基本信息及联系人)"
,
notes
=
"查询检验检测机构列表(基本信息及联系人)"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"查询检验检测机构列表(基本信息及联系人)"
,
notes
=
"查询检验检测机构列表(基本信息及联系人)"
)
public
ResponseModel
<
List
<
TzBaseEnterpriseInfoDto
>>
getInspectionUnitList
()
{
public
ResponseModel
<
List
<
TzBaseEnterpriseInfoDto
>>
getInspectionUnitList
(
@RequestParam
String
openBizType
)
{
return
ResponseHelper
.
buildResponse
(
commonserviceImpl
.
getInspectionUnitList
());
return
ResponseHelper
.
buildResponse
(
commonserviceImpl
.
getInspectionUnitList
(
openBizType
));
}
}
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
...
...
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/java/com/yeejoin/amos/boot/module/jyjc/biz/service/impl/CommonserviceImpl.java
View file @
12a84b09
...
@@ -100,8 +100,8 @@ public class CommonserviceImpl {
...
@@ -100,8 +100,8 @@ public class CommonserviceImpl {
}
}
public
List
<
TzBaseEnterpriseInfoDto
>
getInspectionUnitList
()
{
public
List
<
TzBaseEnterpriseInfoDto
>
getInspectionUnitList
(
String
openBizType
)
{
return
enterpriseInfoMapper
.
getInspectionUnitList
();
return
enterpriseInfoMapper
.
getInspectionUnitList
(
openBizType
);
}
}
public
TzBaseEnterpriseInfo
getInspectionUnitBySequenceNbr
(
Long
sequenceNbr
)
{
public
TzBaseEnterpriseInfo
getInspectionUnitBySequenceNbr
(
Long
sequenceNbr
)
{
...
...
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/java/com/yeejoin/amos/boot/module/jyjc/biz/service/impl/JyjcOpeningApplicationServiceImpl.java
View file @
12a84b09
...
@@ -632,7 +632,7 @@ public class JyjcOpeningApplicationServiceImpl extends BaseService<JyjcOpeningAp
...
@@ -632,7 +632,7 @@ public class JyjcOpeningApplicationServiceImpl extends BaseService<JyjcOpeningAp
}
}
public
List
<
TzBaseEnterpriseInfoDto
>
getInspectionUnitList
()
{
public
List
<
TzBaseEnterpriseInfoDto
>
getInspectionUnitList
()
{
List
<
TzBaseEnterpriseInfoDto
>
tzBaseEnterpriseInfos
=
enterpriseInfoMapper
.
getInspectionUnitList
();
List
<
TzBaseEnterpriseInfoDto
>
tzBaseEnterpriseInfos
=
enterpriseInfoMapper
.
getInspectionUnitList
(
null
);
if
(
ValidationUtil
.
isEmpty
(
tzBaseEnterpriseInfos
))
{
if
(
ValidationUtil
.
isEmpty
(
tzBaseEnterpriseInfos
))
{
return
Collections
.
EMPTY_LIST
;
return
Collections
.
EMPTY_LIST
;
}
}
...
...
amos-boot-system-tzs/amos-boot-module-ymt/amos-boot-module-ymt-api/src/main/java/com/yeejoin/amos/boot/module/ymt/api/mapper/TzBaseEnterpriseInfoMapper.java
View file @
12a84b09
...
@@ -51,7 +51,7 @@ public interface TzBaseEnterpriseInfoMapper extends BaseMapper<TzBaseEnterpriseI
...
@@ -51,7 +51,7 @@ public interface TzBaseEnterpriseInfoMapper extends BaseMapper<TzBaseEnterpriseI
/**
/**
* 查找企业关联设备详情列表
* 查找企业关联设备详情列表
*/
*/
List
<
TzBaseEnterpriseInfoDto
>
getInspectionUnitList
();
List
<
TzBaseEnterpriseInfoDto
>
getInspectionUnitList
(
String
openBizType
);
List
<
TzBaseEnterpriseInfoDto
>
getInspectionUnitListByCode
(
@Param
(
"list"
)
List
<
String
>
codes
,
@Param
(
"city"
)
String
city
,
@Param
(
"openBizType"
)
String
openBizType
);
List
<
TzBaseEnterpriseInfoDto
>
getInspectionUnitListByCode
(
@Param
(
"list"
)
List
<
String
>
codes
,
@Param
(
"city"
)
String
city
,
@Param
(
"openBizType"
)
String
openBizType
);
...
...
amos-boot-system-tzs/amos-boot-module-ymt/amos-boot-module-ymt-api/src/main/resources/mapper/TzBaseEnterpriseInfoMapper.xml
View file @
12a84b09
...
@@ -166,6 +166,9 @@
...
@@ -166,6 +166,9 @@
tz_base_enterprise_info info
tz_base_enterprise_info info
inner JOIN tz_jyjc_opening_application tjoa ON info.use_code = tjoa.unit_code
inner JOIN tz_jyjc_opening_application tjoa ON info.use_code = tjoa.unit_code
AND tjoa.status = '6616'
AND tjoa.status = '6616'
<if
test=
"openBizType != null and openBizType !=''"
>
and tjoa.open_biz_type = #{openBizType}
</if>
group by info.use_code
group by info.use_code
</select>
</select>
...
...
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