zhanghua
2022-09-28 33b2b3a0e697e1bdb804a37de800b0471dfb0cef
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
package com.ycl.entity.caseHandler;
 
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 lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.util.Date;
 
/**
 * <p>
 *  调度信息类
 * </p>
 *
 * @author mg
 * @since 2022-09-28
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("ums_dispatch_info")
public class DispatchInfo {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 处置流程记录Id
     */
    @TableField("dispose_record_id")
    private Integer disposeRecordId;
    /**
     * 执法人员
     */
    @TableField("law_enforcer")
    private Integer lawEnforcer;
    /**
     * 执法人员姓名
     */
    @TableField("law_enforcer_name")
    private String lawEnforcerName;
    /**
     * 执法车
     */
    @TableField("enforcement_car")
    private Integer enforcementCar;
    /**
     * 执法队伍
     */
    @TableField("enforcement_team")
    private String enforcementTeam;
    /**
     * 联系方式
     */
    @TableField("contact_way")
    private String contactWay;
    /**
     * 距离
     */
    @TableField("distance")
    private Integer distance;
    /**
     * 处置日期
     */
    @TableField("dispose_date")
    private Date disposeDate;
    /**
     * 派遣意见
     */
    @TableField("dispatch_opinion")
    private String dispatchOpinion;
    /**
     * 创建人
     */
    @TableField("create_user")
    private Integer createUser;
    /**
     * 创建时间
     */
    @TableField("create_time")
    private Date createTime;
 
}