liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package com.landy.gum.base.model;
 
import java.util.Date;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
 
import com.landy.framework.core.model.BaseModel;
 
/**
 * Model class for ScmLog
 */
@Entity
@Table(name = "scm_log")
@org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true)
public class ScmLogModel extends BaseModel {
 
    //scmlId
    private Integer scmlId;
    //操作者ip
    private String scmlIp;
    //操作时间
    private Date createTime;
    //操作人
    private String creator;
    //日志类型
    private String scmlType;
    //操作行为
    private String scmlOperation;
 
    /**
     * Get scmlId
     */
    @Column(name = "scml_id")
    @Id @GeneratedValue(strategy=GenerationType.AUTO)
    public Integer getScmlId() {
        return scmlId;
    }
 
    /**
     * Set scmlId
     */
    public void setScmlId(Integer scmlId) {
        this.scmlId = scmlId;
        addValidField("scmlId");
    }
 
    /**
     * Get 操作者ip
     */
    @Column(name = "scml_ip")
    public String getScmlIp() {
        return scmlIp;
    }
 
    /**
     * Set 操作者ip
     */
    public void setScmlIp(String scmlIp) {
        this.scmlIp = scmlIp;
        addValidField("scmlIp");
    }
 
    /**
     * Get 操作时间
     */
    @Column(name = "create_time")
    public Date getCreateTime() {
        return createTime;
    }
 
    /**
     * Set 操作时间
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
        addValidField("createTime");
    }
 
    /**
     * Get 操作人
     */
    @Column(name = "creator")
    public String getCreator() {
        return creator;
    }
 
    /**
     * Set 操作人
     */
    public void setCreator(String creator) {
        this.creator = creator;
        addValidField("creator");
    }
 
    /**
     * Get 日志类型
     */
    @Column(name = "scml_type")
    public String getScmlType() {
        return scmlType;
    }
 
    /**
     * Set 日志类型
     */
    public void setScmlType(String scmlType) {
        this.scmlType = scmlType;
        addValidField("scmlType");
    }
 
    /**
     * Get 操作行为
     */
    @Column(name = "scml_operation")
    public String getScmlOperation() {
        return scmlOperation;
    }
 
    /**
     * Set 操作行为
     */
    public void setScmlOperation(String scmlOperation) {
        this.scmlOperation = scmlOperation;
        addValidField("scmlOperation");
    }
 
}