package com.ks.goldcorn.pojo.DO;
|
|
import java.util.Date;
|
|
public class GoldCornRecord {
|
|
public final static int TYPE_GET = 1;
|
public final static int TYPE_CONSUME = 2;
|
|
private Long id;
|
private Long appId;
|
private String uid;
|
private Integer type;
|
private Long sourceId;
|
private Integer goldCorn;
|
private String remarks;
|
private Date createTime;
|
private String title;
|
private String desc;
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getAppId() {
|
return appId;
|
}
|
|
public void setAppId(Long appId) {
|
this.appId = appId;
|
}
|
|
public String getUid() {
|
return uid;
|
}
|
|
public void setUid(String uid) {
|
this.uid = uid == null ? null : uid.trim();
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public Long getSourceId() {
|
return sourceId;
|
}
|
|
public void setSourceId(Long sourceId) {
|
this.sourceId = sourceId;
|
}
|
|
public Integer getGoldCorn() {
|
return goldCorn;
|
}
|
|
public void setGoldCorn(Integer goldCorn) {
|
this.goldCorn = goldCorn;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks == null ? null : remarks.trim();
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|