Commit 4874caf7 by Huang Linyu

后台 - 会服 -绑定管理员, 可以绑定第二个管理员

parent 90983aa5
......@@ -39,6 +39,10 @@ public class CommuneAdmBean implements java.io.Serializable {
private String bindedAdm;
//绑定时间
private Date bindTime;
//绑定的后台管理员姓名2
private String bindedAdm2;
//绑定时间2
private Date bindTime2;
//开单人
private String drawer;
//开单人
......@@ -115,14 +119,31 @@ public class CommuneAdmBean implements java.io.Serializable {
this.bindedAdm = bindedAdm;
}
@ExcelTitleName(value = "绑定时间", number = 19)
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
public Date getBindTime() {
return bindTime;
}
public void setBindTime(Date bindTime) {
this.bindTime = bindTime;
}
@ExcelTitleName(value = "绑定会服2", number = 18)
public String getBindedAdm2() {
return bindedAdm2;
}
public void setBindedAdm2(String bindedAdm2) {
this.bindedAdm2 = bindedAdm2;
}
@ExcelTitleName(value = "绑定时间2", number = 19)
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
public Date getBindTime2() {
return bindTime2;
}
public void setBindTime2(Date bindTime2) {
this.bindTime2 = bindTime2;
}
public Integer getCommuneExtId() {
return communeExtId;
}
......
......@@ -25,6 +25,7 @@ public class CommuneAdmQuery extends AbstractPagedQuery<CommuneAdmQuery> {
private Date communeAgainTimeStart;
private Date communeAgainTimeEnd;
private String bindedAdm;
private String bindedAdm2;
private String drawer;
//已有标签
private String labels;
......@@ -88,6 +89,13 @@ public class CommuneAdmQuery extends AbstractPagedQuery<CommuneAdmQuery> {
public void setBindedAdm(String bindedAdm) {
this.bindedAdm = bindedAdm;
}
public String getBindedAdm2() {
return bindedAdm2;
}
public void setBindedAdm2(String bindedAdm2) {
this.bindedAdm2 = bindedAdm2;
}
public String getDrawer() {
return drawer;
}
......
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 sign in to comment