kimi
2020-05-27 c007f0ca1785db093d48f4846cda82fe8e955765
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
package com.highdatas.mdm.entity;
 
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author kimi
 * @since 2019-12-16
 */
@TableName("maintain")
@Data
public class Maintain extends Model<Maintain> {
 
    private static final long serialVersionUID = 1L;
    /*
     * 主键
     * */
    private String id;
 
    /*
     * 表名
     * */
    @TableField("table_name")
    private String tableName;
    /*
     * 流程id
     * */
    @TableField("flow_id")
    private String flowId;
    /*
     * 创建人
     * */
    @TableField("charge_id")
    private String chargeId;
    /*
     * 描述
     * */
    private String desp;
    /*
     * 版本名称
     * */
    private String version;
    /*
     * 顺序
     * */
    @TableField("order_no")
    private Integer orderNo;
    /*
     * 创建时间
     * */
    @TableField("create_time")
    private Date createTime;
    /*
     * 版本类型 0 ,1,-1
     * */
    private transient Integer maintainType;
    /*
     * 是否激活
     * */
    private transient boolean active;
    /*
     * 是否需要更新
     * */
    private transient boolean needUpdate;
    /*
     * 记录数
     * */
    private transient Integer recordCount;
 
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "Maintain{" +
        "id=" + id +
        ", tableName=" + tableName +
        ", flowId=" + flowId +
        ", chargeId=" + chargeId +
        ", desp=" + desp +
        ", version=" + version +
        ", createTime=" + createTime +
        "}";
    }
}