zhongrj
2023-08-30 f3b15901b4835eff84947d9fb4bbda3db466ed9a
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package cn.gistack.sm.sjztmd.entity;
 
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 com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 文件存储位置-填报
 *
 * @author zhongrj
 * @date 2023-08-30
 */
@Data
@TableName("\"tb_file_storage_location\"")
@ApiModel(value = "文件存储位置", description = "文件存储位置")
public class TbFileStorageLocation implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @JsonSerialize(using = ToStringSerializer.class)
    @ApiModelProperty(value = "主键")
    @TableId(value = "\"guid\"",type = IdType.ASSIGN_ID)
    private String guid;
 
    /**
     * 水库编码
     */
    @ApiModelProperty(value = "水库编码")
    @TableField("\"res_guid\"")
    private String resGuid;
 
    /**
     * 始建期资料路径
     */
    @ApiModelProperty(value = "始建期资料路径")
    @TableField("\"construction_period_data_path\"")
    private String constructionPeriodDataPath;
 
    /**
     * 第一次除险加固资料路径
     */
    @ApiModelProperty(value = "第一次除险加固资料路径")
    @TableField("\"first_reinforce_data_path\"")
    private String firstReinforceDataPath;
 
    /**
     * 第二次除险加固资料路径
     */
    @ApiModelProperty(value = "第二次除险加固资料路径")
    @TableField("\"second_reinforce_data_path\"")
    private String secondReinforceDataPath;
 
    /**
     * 第三次除险加固资料路径
     */
    @ApiModelProperty(value = "第三次除险加固资料路径")
    @TableField("\"third_reinforce_data_path\"")
    private String thirdReinforceDataPath;
 
    /**
     * 日常运行管理资料路径
     */
    @ApiModelProperty(value = "日常运行管理资料路径")
    @TableField("\"daily_operation_management_data_path\"")
    private String dailyOperationManagementDataPath;
 
    /**
     * 整编图纸
     */
    @ApiModelProperty(value = "整编图纸 ")
    @TableField("\"integrated_drawing_path\"")
    private String integratedDrawingPath;
 
    /**
     * 水库鸟瞰图
     */
    @ApiModelProperty(value = "水库鸟瞰图 ")
    @TableField("\"water_aerial_view\"")
    private String waterAerialView;
 
    /**
     * 填报状态(0:填写中,1:审核中,2:审核通过)
     */
    @ApiModelProperty(value = "填报状态(0:填写中,1:审核中,2:审核通过) ")
    @TableField("\"check_state\"")
    @JsonSerialize(using = ToStringSerializer.class)
    private Integer checkState;
 
    /**
     * 审核记录
     */
    @ApiModelProperty(value = "审核记录 ")
    @TableField("\"check_log\"")
    private String checkLog;
 
    /**
     * 创建时间
     */
    @ApiModelProperty(value = "创建时间 ")
    @TableField("\"create_time\"")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    /**
     * 操作记录
     */
    @ApiModelProperty(value = "操作记录 ")
    @TableField("\"log\"")
    private String log;
 
}