提成加上合计、Excel导出;打卡记录加上姓名、营养师;体征调查加上备注项
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
@ -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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user