kimi
2020-02-14 fa24d347d4c5a796297184f9957b0582dc52c66e
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
package com.highdatas.mdm.entity;
 
import java.util.Date;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author kimi
 * @since 2020-01-13
 */
@TableName("deleted_table_log")
public class DeletedTableLog extends Model<DeletedTableLog> {
 
    private static final long serialVersionUID = 1L;
 
    private String id;
 
    @TableField("table_name")
    private String tableName;
 
    @TableField("create_time")
    private Date createTime;
 
    public String getId() {
        return id;
    }
 
    public DeletedTableLog setId(String id) {
        this.id = id;
        return this;
    }
    public String getTableName() {
        return tableName;
    }
 
    public DeletedTableLog setTableName(String tableName) {
        this.tableName = tableName;
        return this;
    }
    public Date getCreateTime() {
        return createTime;
    }
 
    public DeletedTableLog setCreateTime(Date createTime) {
        this.createTime = createTime;
        return this;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "DeletedTableLog{" +
        "id=" + id +
        ", tableName=" + tableName +
        ", createTime=" + createTime +
        "}";
    }
}