CeDo
2021-05-27 bb1b8101a3b31a03cae378bfcb16f4576f154647
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
package com.panzhihua.service_grid.model.dos;
 
import java.util.*;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
 
 
/**
 * 事件处理流转记录实体类
 *
 * @author cedoo email:cedoo(a)qq.com
 * @version 1.0
 * @since 1.0
 * @date 2021-05-26
 * */
@Data
@TableName("event_transfer_record")
public class EventTransferRecordDO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * id   列: id
     */
    @TableId(type = IdType.ASSIGN_ID)
    private Long id;
    /**
     * 事件ID   列: event_id
     */
    private Long eventId;
    /**
     * 来源类型(1、网格员2、社区3、是街道)   列: from_type
     */
    private Integer fromType;
    /**
     * 事件来源机构或网格员   列: from_id
     */
    private Long fromId;
    /**
     * 转交办理人路径名称   列: from_name
     */
    private String fromName;
    /**
     * 转交类型(1、网格员2、社区3、是街道)   列: to_type
     */
    private Integer toType;
    /**
     * 事件下游机构或网格员   列: to_id
     */
    private Long toId;
    /**
     * 需要办理人路径名称   列: to_name
     */
    private String toName;
    /**
     * 处理结果   列: process_result
     */
    private String processResult;
    /**
     * 处理时间   列: process_date
     */
    private Date processDate;
    /**
     * 创建时间   列: create_at
     */
    @TableField(fill = FieldFill.INSERT)
    private Date createAt;
}