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
7384c6c0
Commit
7384c6c0
authored
Mar 09, 2023
by
曹盼盼
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改气瓶气瓶基本信息列表接口以及根据id查询追溯详情接口
parent
8a573238
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
0 deletions
+13
-0
CylinderInfoDto.java
...oin/amos/boot/module/tzs/flc/api/dto/CylinderInfoDto.java
+1
-0
TzCylinderInfoDto.java
...n/amos/boot/module/tzs/flc/api/dto/TzCylinderInfoDto.java
+6
-0
CylinderInfo.java
...oin/amos/boot/module/tzs/flc/api/entity/CylinderInfo.java
+3
-0
CylinderInfoMapper.xml
...-tzs-api/src/main/resources/mapper/CylinderInfoMapper.xml
+3
-0
No files found.
amos-boot-system-tzs/amos-boot-module-tzs-api/src/main/java/com/yeejoin/amos/boot/module/tzs/flc/api/dto/CylinderInfoDto.java
View file @
7384c6c0
...
@@ -154,5 +154,6 @@ public class CylinderInfoDto extends BaseDto {
...
@@ -154,5 +154,6 @@ public class CylinderInfoDto extends BaseDto {
private
String
electronicLabelCode
;
private
String
electronicLabelCode
;
private
String
cylinderStatusStr
;
private
String
cylinderStatusStr
;
private
String
SupervisionCode
;
}
}
amos-boot-system-tzs/amos-boot-module-tzs-api/src/main/java/com/yeejoin/amos/boot/module/tzs/flc/api/dto/TzCylinderInfoDto.java
View file @
7384c6c0
...
@@ -82,6 +82,12 @@ public class TzCylinderInfoDto {
...
@@ -82,6 +82,12 @@ public class TzCylinderInfoDto {
* 阀门制造单位
* 阀门制造单位
*/
*/
private
String
valveManufacturUnit
;
private
String
valveManufacturUnit
;
@ApiModelProperty
(
value
=
"监管码"
)
/**
* 监管码
*/
private
String
SupervisionCode
;
}
}
amos-boot-system-tzs/amos-boot-module-tzs-api/src/main/java/com/yeejoin/amos/boot/module/tzs/flc/api/entity/CylinderInfo.java
View file @
7384c6c0
...
@@ -120,4 +120,7 @@ public class CylinderInfo extends BaseEntity {
...
@@ -120,4 +120,7 @@ public class CylinderInfo extends BaseEntity {
@ApiModelProperty
(
value
=
"充装介质名称"
)
@ApiModelProperty
(
value
=
"充装介质名称"
)
private
String
fillingMediaName
;
private
String
fillingMediaName
;
@ApiModelProperty
(
value
=
"监管码"
)
private
String
SupervisionCode
;
}
}
amos-boot-system-tzs/amos-boot-module-tzs-api/src/main/resources/mapper/CylinderInfoMapper.xml
View file @
7384c6c0
...
@@ -184,6 +184,9 @@
...
@@ -184,6 +184,9 @@
<if
test=
"cylinderInfoDto.electronicLabelCode != null and cylinderInfoDto.electronicLabelCode != '' "
>
<if
test=
"cylinderInfoDto.electronicLabelCode != null and cylinderInfoDto.electronicLabelCode != '' "
>
and ct.electronic_label_code like concat('%',#{cylinderInfoDto.electronicLabelCode},'%')
and ct.electronic_label_code like concat('%',#{cylinderInfoDto.electronicLabelCode},'%')
</if>
</if>
<if
test=
"cylinderInfoDto.SupervisionCode != null and cylinderInfoDto.SupervisionCode != '' "
>
and ci.supervision_code like concat('%',#{cylinderInfoDto.electronicLabelCode},'%')
</if>
ORDER BY ci.sync_date DESC
ORDER BY ci.sync_date DESC
</where>
</where>
</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