提成加上合计、Excel导出;打卡记录加上姓名、营养师;体征调查加上备注项

This commit is contained in:
xiezhijun
2021-01-13 18:39:17 +08:00
parent c07fddf510
commit cf56395dab
19 changed files with 267 additions and 165 deletions

View File

@ -144,6 +144,10 @@ public class CustomerInvestigateRequest extends BaseEntity
@Excel(name = "减脂经历")
private String experience;
/** 备注 */
@Excel(name = "备注")
private String comments;
public Long getId() {
return id;
}
@ -399,4 +403,12 @@ public class CustomerInvestigateRequest extends BaseEntity
public void setExperience(String experience) {
this.experience = experience;
}
public String getComments() {
return comments;
}
public void setComments(String comments) {
this.comments = comments;
}
}

View File

@ -136,6 +136,10 @@ public class CustomerListResponse extends BaseEntity
@Excel(name = "减脂遇到的困难")
private String difficulty;
/** 备注 */
@Excel(name = "备注")
private String comments;
public Long getId() {
return id;
}
@ -377,4 +381,12 @@ public class CustomerListResponse extends BaseEntity
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getComments() {
return comments;
}
public void setComments(String comments) {
this.comments = comments;
}
}