xuxiuxi
2017-07-28 062e9ff8359a4eccba741d0c8c799f3ca3535d83
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
package cn.com.basic.face.discern.entity;
 
import java.io.Serializable;
import java.util.Date;
 
import cn.com.basic.face.discern.common.BaseEntity;
 
/**
 * 访客系统同步记录表
 */
public class VisitTableSynchronRecord extends BaseEntity implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    public static final String MODEL_NAME = "VisitTableSynchronRecord";
 
    public static final class FieldNames {
        /**
         * 主键
         */
        public static final String id = "id";
        /**
         * 表名
         */
        public static final String tableName = "tableName";
        /**
         * 最近一次同步时间
         */
        public static final String synchronTime = "synchronTime";
    }
 
    // 主键
    private String id;
    // 表名
    private String tableName;
    // 最近一次同步时间
    private String synchronTime;
 
    /**
     * Get 主键
     */
    public String getId() {
        return id;
    }
 
    /**
     * Set 主键
     */
    public void setId(String id) {
        this.id = id;
    }
 
    /**
     * Get 表名
     */
    public String getTableName() {
        return tableName;
    }
 
    /**
     * Set 表名
     */
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
 
    /**
     * Get 最近一次同步时间
     */
    public String getSynchronTime() {
        return synchronTime;
    }
 
    /**
     * Set 最近一次同步时间
     */
    public void setSynchronTime(String synchronTime) {
        this.synchronTime = synchronTime;
    }
 
    public String toString() {
        return 
             ",主键 ="   + id         +  ",表名 ="   + tableName  +  ",最近一次同步时间 ="+ synchronTime
            ;
    }
}