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
93c4e40d
Commit
93c4e40d
authored
Jun 25, 2021
by
tangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
专家实体
parent
aaacdac8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
14 deletions
+56
-14
FireExpertsDto.java
.../yeejoin/amos/boot/module/jcs/api/dto/FireExpertsDto.java
+25
-2
FireExperts.java
.../yeejoin/amos/boot/module/jcs/api/entity/FireExperts.java
+31
-12
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-jcs-api/src/main/java/com/yeejoin/amos/boot/module/jcs/api/dto/FireExpertsDto.java
View file @
93c4e40d
package
com
.
yeejoin
.
amos
.
boot
.
module
.
jcs
.
api
.
dto
;
import
com.baomidou.mybatisplus.annotation.FieldFill
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.yeejoin.amos.boot.biz.common.dto.BaseDto
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
...
...
@@ -71,8 +73,8 @@ public class FireExpertsDto extends BaseDto {
@ApiModelProperty
(
value
=
"更新时间"
)
private
Date
updateTime
;
@ApiModelProperty
(
value
=
"操作人
员
"
)
private
String
operationUesr
;
@ApiModelProperty
(
value
=
"操作人
名称
"
)
private
String
recUserName
;
@ApiModelProperty
(
value
=
"创建时间"
)
private
Date
createTime
;
...
...
@@ -80,4 +82,25 @@ public class FireExpertsDto extends BaseDto {
@ApiModelProperty
(
value
=
"备注"
)
private
String
note
;
@ApiModelProperty
(
value
=
"岗位名称code"
)
private
String
jobsCode
;
@ApiModelProperty
(
value
=
"消防专家领域code"
)
private
String
fieldCode
;
@ApiModelProperty
(
value
=
"人员照片"
)
private
String
personnelPhotos
;
@ApiModelProperty
(
value
=
"资质证书"
)
private
String
qualificationCertificate
;
@ApiModelProperty
(
value
=
"人员状态"
)
private
String
state
;
@ApiModelProperty
(
value
=
"状态code"
)
private
String
stateCode
;
@ApiModelProperty
(
value
=
"出生日期"
)
private
Date
birthdayTime
;
}
amos-boot-module/amos-boot-module-api/amos-boot-module-jcs-api/src/main/java/com/yeejoin/amos/boot/module/jcs/api/entity/FireExperts.java
View file @
93c4e40d
...
...
@@ -11,24 +11,23 @@ import lombok.EqualsAndHashCode;
import
lombok.experimental.Accessors
;
import
java.util.Date
;
/**
*
*
* @author tb
* @date 2021-06-07
*/
* @author tb
* @date 2021-06-07
*/
@Data
@EqualsAndHashCode
(
callSuper
=
true
)
@Accessors
(
chain
=
true
)
@TableName
(
"cb_fire_experts"
)
@ApiModel
(
value
=
"FireExperts对象"
,
description
=
"
"
)
@ApiModel
(
value
=
"FireExperts对象"
,
description
=
"消防专家
"
)
public
class
FireExperts
extends
BaseEntity
{
/**
*
*/
private
static
final
long
serialVersionUID
=
1L
;
*
*/
private
static
final
long
serialVersionUID
=
1L
;
@ApiModelProperty
(
value
=
"姓名"
)
@ApiModelProperty
(
value
=
"姓名"
)
private
String
name
;
@ApiModelProperty
(
value
=
"证件类型"
)
...
...
@@ -77,11 +76,11 @@ public class FireExperts extends BaseEntity {
private
String
mobilePhone
;
@ApiModelProperty
(
value
=
"更新时间"
)
@TableField
(
fill
=
FieldFill
.
UPDATE
)
@TableField
(
fill
=
FieldFill
.
UPDATE
)
private
Date
updateTime
;
@ApiModelProperty
(
value
=
"操作人名称"
)
@TableField
(
fill
=
FieldFill
.
INSERT_UPDATE
)
@TableField
(
fill
=
FieldFill
.
INSERT_UPDATE
)
private
String
recUserName
;
@ApiModelProperty
(
value
=
"创建时间"
)
...
...
@@ -90,4 +89,24 @@ public class FireExperts extends BaseEntity {
@ApiModelProperty
(
value
=
"备注"
)
private
String
note
;
@ApiModelProperty
(
value
=
"岗位名称code"
)
private
String
jobsCode
;
@ApiModelProperty
(
value
=
"消防专家领域code"
)
private
String
fieldCode
;
@ApiModelProperty
(
value
=
"人员照片"
)
private
String
personnelPhotos
;
@ApiModelProperty
(
value
=
"资质证书"
)
private
String
qualificationCertificate
;
@ApiModelProperty
(
value
=
"人员状态"
)
private
String
state
;
@ApiModelProperty
(
value
=
"状态code"
)
private
String
stateCode
;
@ApiModelProperty
(
value
=
"出生日期"
)
private
Date
birthdayTime
;
}
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