“djh”
5 天以前 99132a43bf344f2aafdd9894b0762d2eedd9767b
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.gkhy.exam.system.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.io.Serializable;
import java.time.LocalDateTime;
 
@Getter
@Setter
@TableName("company_industry_template")
@ApiModel(value = "company_industry_template",description = "行业模板")
public class CompanyIndustryTemplate implements Serializable {
 
    @ApiModelProperty("主键")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @NotNull(message = "企业Id不可为空")
    @ApiModelProperty(value = "企业ID")
    @TableField("company_id")
    private Integer companyId;
 
    @ApiModelProperty(value = "企业名称")
    @TableField("company_name")
    private String companyName;
 
    @ApiModelProperty(value = "模板名称")
    @TableField("template_name")
    @NotBlank(message = "模板名称不可为空")
    private String templateName;
 
    @ApiModelProperty(value = "行业类型1化工2安防")
    @TableField("industry_type")
    @NotNull(message = "行业类型不可为空")
    private Integer industryType;
 
    @TableField(exist = false)
    private String industryName;
 
    @ApiModelProperty(value = "文件路径")
    @TableField("file_path")
    @NotBlank(message = "文件路径不可为空")
    private String filePath;
 
    @ApiModelProperty(value = "文件名称")
    @TableField("file_name")
    private String fileName;
 
    @ApiModelProperty(value = "文件格式")
    @TableField("format")
    @NotBlank(message = "文件格式不可为空")
    private String format;
 
    @ApiModelProperty(value = "是否删除")
    @TableField("del_flag")
    private Integer delFlag;
 
    @TableField("create_by")
    private String createBy;
 
    @TableField("create_time")
    private LocalDateTime createTime;
 
    @TableField("update_by")
    private String updateBy;
 
    @TableField("update_time")
    private LocalDateTime updateTime;
 
 
}