ConstructionTeam.java
983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package vion.model;
import com.baomidou.mybatisplus.annotation.*;
import io.github.linpeilie.annotations.AutoMapper;
import io.github.linpeilie.annotations.AutoMappers;
import lombok.Data;
import vion.dto.ConstructionTeamDTO;
import vion.vo.ConstructionTeamVO;
import java.util.Date;
/**
* 施工队信息表
*/
@Data
@TableName(value = "tbl_construction_team")
@AutoMappers({
@AutoMapper(target = ConstructionTeamVO.class),
@AutoMapper(target = ConstructionTeamDTO.class),
})
public class ConstructionTeam {
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
* 施工队名称
*/
@TableField(value = "\"name\"")
private String name;
/**
* 城市
*/
@TableField(value = "city")
private String city;
@TableField(value = "create_time", fill = FieldFill.INSERT)
private Date createTime;
@TableField(value = "update_time", fill = FieldFill.INSERT_UPDATE)
private Date updateTime;
}