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
681fc3f1
Commit
681fc3f1
authored
Nov 28, 2023
by
tangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加典型设计图
parent
47adbc91
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
DesignInformationDto.java
...n/amos/boot/module/hygf/api/dto/DesignInformationDto.java
+8
-0
DesignInformation.java
...n/amos/boot/module/hygf/api/entity/DesignInformation.java
+7
-0
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/dto/DesignInformationDto.java
View file @
681fc3f1
package
com
.
yeejoin
.
amos
.
boot
.
module
.
hygf
.
api
.
dto
;
import
com.baomidou.mybatisplus.annotation.FieldStrategy
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler
;
import
io.swagger.annotations.ApiModel
;
...
...
@@ -27,6 +28,13 @@ public class DesignInformationDto extends BaseDto {
@ApiModelProperty
(
value
=
"典型设计图信息"
)
@TableField
(
typeHandler
=
FastjsonTypeHandler
.
class
)
private
List
<
Object
>
typicalDiagram
;
/**
* 典型设计图信息
*/
@ApiModelProperty
(
value
=
"典型设计图信息"
)
@TableField
(
typeHandler
=
FastjsonTypeHandler
.
class
)
private
List
<
Object
>
engineering
;
@ApiModelProperty
(
value
=
"组件排布图"
)
@TableField
(
typeHandler
=
FastjsonTypeHandler
.
class
)
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/entity/DesignInformation.java
View file @
681fc3f1
...
...
@@ -32,6 +32,13 @@ public class DesignInformation extends BaseEntity {
private
List
<
Object
>
typicalDiagram
;
/**
* 典型设计图信息
*/
@TableField
(
value
=
"engineering"
,
typeHandler
=
FastjsonTypeHandler
.
class
,
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
List
<
Object
>
engineering
;
/**
* 组件排布图
*/
@TableField
(
value
=
"component_layout"
,
typeHandler
=
FastjsonTypeHandler
.
class
,
updateStrategy
=
FieldStrategy
.
IGNORED
)
...
...
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