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
f40c7e8d
Commit
f40c7e8d
authored
Aug 23, 2022
by
吴江
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop_unit_register' into 'developer'
Develop unit register See merge request
!13
parents
f806b680
eb45d6c6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
25 additions
and
13 deletions
+25
-13
application.properties
...ot-data-openapi/src/main/resources/application.properties
+1
-1
TzsJgBasicInfoDto.java
...ejoin/amos/boot/module/tzs/api/dto/TzsJgBasicInfoDto.java
+16
-10
TzsJgFile.java
...om/yeejoin/amos/boot/module/tzs/api/entity/TzsJgFile.java
+1
-0
JgFileObjectEnum.java
...join/amos/boot/module/tzs/api/enums/JgFileObjectEnum.java
+1
-1
TzsJgMapper.xml
...-module-tzs-api/src/main/resources/mapper/TzsJgMapper.xml
+6
-1
TzsJgServiceImpl.java
...os/boot/module/tzs/biz/service/impl/TzsJgServiceImpl.java
+0
-0
tzs-1.0.0.1.xml
...e-tzs-biz/src/main/resources/db/changelog/tzs-1.0.0.1.xml
+0
-0
No files found.
amos-boot-data/amos-boot-data-openapi/src/main/resources/application.properties
View file @
f40c7e8d
...
...
@@ -11,4 +11,4 @@ redis.cache.failure.time=10800
# mybatis-plus
mybatis-plus.mapper-locations
=
classpath:mapper/*Mapper.xml
mybatis-plus.type-aliases-super-type
=
org.typroject.tyboot.core.rdbms.orm.entity.BaseEntity
mybatis-plus.global-config.db-config.id-type
=
id_worker
mybatis-plus.global-config.db-config.id-type
=
ID_WORKER
amos-boot-system-tzs/amos-boot-module-tzs-api/src/main/java/com/yeejoin/amos/boot/module/tzs/api/dto/TzsJgBasicInfoDto.java
View file @
f40c7e8d
package
com
.
yeejoin
.
amos
.
boot
.
module
.
tzs
.
api
.
dto
;
import
java.util.List
;
import
com.yeejoin.amos.boot.biz.common.dto.BaseDto
;
import
com.yeejoin.amos.boot.module.tzs.api.entity.TzsJgConstructionInfo
;
import
com.yeejoin.amos.boot.module.tzs.api.entity.TzsJgDesignInfo
;
import
com.yeejoin.amos.boot.module.tzs.api.entity.TzsJgInspectionInfo
;
import
com.yeejoin.amos.boot.module.tzs.api.entity.TzsJgMaintenanceInfo
;
import
com.yeejoin.amos.boot.module.tzs.api.entity.TzsJgOtherInfo
;
import
com.yeejoin.amos.boot.module.tzs.api.entity.TzsJgProduceInfo
;
import
com.yeejoin.amos.boot.module.tzs.api.entity.TzsJgRegistrationInfo
;
import
com.yeejoin.amos.boot.module.tzs.api.entity.TzsJgSuperviseInfo
;
import
com.yeejoin.amos.boot.module.tzs.api.entity.TzsJgUseInfo
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
...
...
@@ -83,16 +76,29 @@ public class TzsJgBasicInfoDto extends BaseDto {
@ApiModelProperty
(
value
=
"施工信息-最新一次"
)
private
TzsJgConstructionInfoDto
constructionInfo
;
@ApiModelProperty
(
value
=
"施工信息列表"
)
private
List
<
TzsJgConstructionInfoDto
>
constructionInfoList
;
@ApiModelProperty
(
value
=
"维保信息"
)
private
TzsJgMaintenanceInfoDto
maintenanceInfo
;
@ApiModelProperty
(
value
=
"维保信息列表"
)
private
List
<
TzsJgMaintenanceInfoDto
>
maintenanceInfoList
;
@ApiModelProperty
(
value
=
"技术信息"
)
private
TzsJgElevatorTechInfoDto
elevatorTechInfo
;
@ApiModelProperty
(
value
=
"检验信息"
)
private
TzsJgInspectionInfoDto
inspectionInfo
;
@ApiModelProperty
(
value
=
"检验信息列表"
)
private
List
<
TzsJgInspectionInfoDto
>
inspectionInfoList
;
@ApiModelProperty
(
value
=
"其他信息"
)
private
TzsJgOtherInfoDto
otherInfo
;
@ApiModelProperty
(
value
=
"附件信息"
)
private
List
<
TzsJgEnclosureInfoDto
>
enclousureInfo
;
private
String
superviseKey
;
}
amos-boot-system-tzs/amos-boot-module-tzs-api/src/main/java/com/yeejoin/amos/boot/module/tzs/api/entity/TzsJgFile.java
View file @
f40c7e8d
...
...
@@ -51,4 +51,5 @@ public class TzsJgFile extends BaseEntity {
@ApiModelProperty
(
value
=
"对接公司编码"
)
private
String
appId
;
private
Long
squNbr
;
}
amos-boot-system-tzs/amos-boot-module-tzs-api/src/main/java/com/yeejoin/amos/boot/module/tzs/api/enums/JgFileObjectEnum.java
View file @
f40c7e8d
...
...
@@ -10,7 +10,7 @@ package com.yeejoin.amos.boot.module.tzs.api.enums;
public
enum
JgFileObjectEnum
{
DESIGN_INFO
(
"designInf"
),
DESIGN_INFO
(
"designInf
o
"
),
PRODUCE_INFO
(
"produceInfo"
),
REGISTRATION_INFO
(
"registrationInfo"
),
MAINTENANCE_INFO
(
"maintenanceInfo"
),
...
...
amos-boot-system-tzs/amos-boot-module-tzs-api/src/main/resources/mapper/TzsJgMapper.xml
View file @
f40c7e8d
...
...
@@ -39,6 +39,11 @@
supervise.sequence_code
<where>
<if
test=
"tzsJgBasicInfoDto.orgBranchCode!=null and tzsJgBasicInfoDto.orgBranchCode!='' "
>
AND supervise.org_branch_code LIKE
CONCAT('%',#{tzsJgBasicInfoDto.orgBranchCode},'%')
</if>
<if
test=
"tzsJgBasicInfoDto.orgBranchName!=null and tzsJgBasicInfoDto.orgBranchName!='' "
>
AND supervise.org_branch_name LIKE
CONCAT('%',#{tzsJgBasicInfoDto.orgBranchName},'%')
...
...
@@ -70,7 +75,7 @@
</if>
<if
test=
"tzsJgBasicInfoDto.equDefine!=null and tzsJgBasicInfoDto.equDefine!='' "
>
AND
supervise
.equ_define LIKE
AND
registration
.equ_define LIKE
CONCAT('%',#{tzsJgBasicInfoDto.equDefine},'%')
</if>
<if
...
...
amos-boot-system-tzs/amos-boot-module-tzs-biz/src/main/java/com/yeejoin/amos/boot/module/tzs/biz/service/impl/TzsJgServiceImpl.java
View file @
f40c7e8d
This diff is collapsed.
Click to expand it.
amos-boot-system-tzs/amos-boot-module-tzs-biz/src/main/resources/db/changelog/tzs-1.0.0.1.xml
View file @
f40c7e8d
This diff is collapsed.
Click to expand it.
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