jinpengyong
2023-09-28 b62c0ac0e4fa36e233915256ac2f9e3875ff3144
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
package com.moral.api.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.io.Serializable;
import java.util.Date;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
 
/**
 * <p>
 * 督办单
 * </p>
 *
 * @author moral
 * @since 2022-01-12
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class Supervision extends Model<Supervision> {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 组织id
     */
    private Integer organizationId;
 
    /**
     * 地区编码
     */
    private Integer cityCode;
 
    /**
     * 地区名称
     */
    private String cityName;
 
    /**
     * 时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date time;
 
    /**
     * 被督办单位
     */
    private String superviseeUnit;
 
    /**
     * 督办单编号
     */
    private String number;
 
    /**
     * 问题类型
     */
    private String problemType;
 
    /**
     * 督办问题描述
     */
    private String problemDesc;
 
    /**
     * 现场图片
     */
    private String images;
 
    /**
     * 经办人
     */
    private String handler;
 
    /**
     * 督办次数
     */
    private Integer numberTimes;
 
    /**
     * 管控措施
     */
    private String measures;
 
    /**
     * 创建时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date createTime;
 
    /**
     * 更新时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date updateTime;
 
    /**
     * 是否删除,0:不删除;1:删除
     */
    private String isDelete;
 
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
}