客户体征相关
This commit is contained in:
@ -5,6 +5,8 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.stdiet.common.annotation.Excel;
|
||||
import com.stdiet.common.core.domain.BaseEntity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 客户健康对象 sys_customer_healthy
|
||||
*
|
||||
@ -410,6 +412,24 @@ public class SysCustomerHealthy extends BaseEntity
|
||||
@Excel(name = "饮食习惯")
|
||||
private Long makeFoodType;
|
||||
|
||||
/** 客户病史体征id,使用,隔开 */
|
||||
//@Excel(name = "客户病史体征id,使用,隔开")
|
||||
private String physicalSignsId;
|
||||
|
||||
/** 体征对象集合 **/
|
||||
private List<SysPhysicalSigns> signList;
|
||||
|
||||
/** 其他病史体征 **/
|
||||
private String otherPhysicalSigns;
|
||||
|
||||
/** 气血数据 */
|
||||
@Excel(name = "气血数据")
|
||||
private String bloodData;
|
||||
|
||||
/** 湿气数据 */
|
||||
@Excel(name = "湿气数据")
|
||||
private String moistureDate;
|
||||
|
||||
/** 删除标识 0未删除 1已删除。默认0 */
|
||||
private Long delFlag;
|
||||
|
||||
@ -1301,6 +1321,46 @@ public class SysCustomerHealthy extends BaseEntity
|
||||
this.tall = tall;
|
||||
}
|
||||
|
||||
public String getPhysicalSignsId() {
|
||||
return physicalSignsId;
|
||||
}
|
||||
|
||||
public void setPhysicalSignsId(String physicalSignsId) {
|
||||
this.physicalSignsId = physicalSignsId;
|
||||
}
|
||||
|
||||
public List<SysPhysicalSigns> getSignList() {
|
||||
return signList;
|
||||
}
|
||||
|
||||
public void setSignList(List<SysPhysicalSigns> signList) {
|
||||
this.signList = signList;
|
||||
}
|
||||
|
||||
public String getOtherPhysicalSigns() {
|
||||
return otherPhysicalSigns;
|
||||
}
|
||||
|
||||
public void setOtherPhysicalSigns(String otherPhysicalSigns) {
|
||||
this.otherPhysicalSigns = otherPhysicalSigns;
|
||||
}
|
||||
|
||||
public String getBloodData() {
|
||||
return bloodData;
|
||||
}
|
||||
|
||||
public void setBloodData(String bloodData) {
|
||||
this.bloodData = bloodData;
|
||||
}
|
||||
|
||||
public String getMoistureDate() {
|
||||
return moistureDate;
|
||||
}
|
||||
|
||||
public void setMoistureDate(String moistureDate) {
|
||||
this.moistureDate = moistureDate;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
|
@ -224,6 +224,11 @@ public class SysOrder extends BaseEntity {
|
||||
* */
|
||||
private List<SysOrderPause> orderPauseList;
|
||||
|
||||
/**
|
||||
* 订单金额状态 0订单金额大于等于0 1订单金额小于0
|
||||
*/
|
||||
private Integer amountFlag;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
public Date getStartTime() {
|
||||
return startTime;
|
||||
@ -590,4 +595,12 @@ public class SysOrder extends BaseEntity {
|
||||
public void setConditioningProject(String conditioningProject) {
|
||||
this.conditioningProject = conditioningProject;
|
||||
}
|
||||
|
||||
public Integer getAmountFlag() {
|
||||
return amountFlag;
|
||||
}
|
||||
|
||||
public void setAmountFlag(Integer amountFlag) {
|
||||
this.amountFlag = amountFlag;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user