package com.ks.goldcorn.pojo.DO;
|
|
import java.util.Date;
|
|
|
public class GoldCornAppInfo {
|
private Long id;
|
|
private String appCode;
|
|
private String appName;
|
|
private String appDesc;
|
|
private String remarks;
|
|
private Date createTime;
|
|
private Date updateTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getAppCode() {
|
return appCode;
|
}
|
|
public void setAppCode(String appCode) {
|
this.appCode = appCode == null ? null : appCode.trim();
|
}
|
|
public String getAppName() {
|
return appName;
|
}
|
|
public void setAppName(String appName) {
|
this.appName = appName == null ? null : appName.trim();
|
}
|
|
public String getAppDesc() {
|
return appDesc;
|
}
|
|
public void setAppDesc(String appDesc) {
|
this.appDesc = appDesc == null ? null : appDesc.trim();
|
}
|
|
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;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|