Commit 834cd831 by guojuxing

商户创建时间

parent ef04dcd2
......@@ -37,6 +37,11 @@ public class EnterpriseVo {
*/
private Integer isExpire;
/**
* 商户创建时间
*/
private Date createTime;
public String getExpireDate() {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
if (auditTime != null) {
......@@ -156,4 +161,13 @@ public class EnterpriseVo {
public void setUserId(Integer userId) {
this.userId = userId;
}
public Date getCreateTime() {
return createTime;
}
public EnterpriseVo setCreateTime(Date createTime) {
this.createTime = createTime;
return this;
}
}
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