Commit 1f25a703 by zhiwj

添加创建时间返回

parent 49ce7acf
package com.gic.enterprise.dto;
import java.io.Serializable;
import java.util.Date;
public class PlatformBrandRefDTO implements Serializable {
private static final long serialVersionUID = -1183766055952427246L;
......@@ -31,6 +32,10 @@ public class PlatformBrandRefDTO implements Serializable {
*/
private String enterpriseBrandCode;
private Date createTime;
private Date updateTime;
public Integer getPlatformBrandRefId() {
return platformBrandRefId;
}
......@@ -78,4 +83,20 @@ public class PlatformBrandRefDTO implements Serializable {
public void setEnterpriseBrandCode(String enterpriseBrandCode) {
this.enterpriseBrandCode = enterpriseBrandCode;
}
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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment