Commit 8f93c591 by qwmqiuwenmin

fix

parent 9e4e5610
package com.gic.haoban.manage.api.dto;
import java.io.Serializable;
import java.util.Date;
/**
* Created by tgs on 2020/2/9.
......@@ -19,6 +20,7 @@ public class EnterpriseDetailDTO implements Serializable{
private String enterpriseLogo;
private String staffId;
private String staffName;
private Date createTime;
public String getWxEnterpriseRelatedId() {
return wxEnterpriseRelatedId;
}
......@@ -73,6 +75,12 @@ public class EnterpriseDetailDTO implements Serializable{
public void setStaffName(String staffName) {
this.staffName = staffName;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
}
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