|
|
@ -2,8 +2,10 @@ package com.acupuncture.system.domain.dto; |
|
|
|
|
|
|
|
import com.acupuncture.system.domain.po.UplReportImage; |
|
|
|
import com.acupuncture.system.domain.po.UplRtcfInfo; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty; |
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import javax.validation.constraints.NotNull; |
|
|
@ -215,4 +217,933 @@ public class ExternalDto { |
|
|
|
private String from; |
|
|
|
private String memberid; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* 3.1体质测试类数据的实时传输 |
|
|
|
*/ |
|
|
|
public static class RtcfInfo { |
|
|
|
@ApiModelProperty("当前测得体质测试类数据标题") |
|
|
|
@JsonProperty("Title") |
|
|
|
private String Title; |
|
|
|
@ApiModelProperty("单位代码(或科室代码、项目代码)") |
|
|
|
@JsonProperty("UUID") |
|
|
|
private String UUID; |
|
|
|
@ApiModelProperty("人员编号") |
|
|
|
@JsonProperty("UID") |
|
|
|
@NotNull(message = "人员编号不能为空") |
|
|
|
private String UID; |
|
|
|
@ApiModelProperty("测试序号(时间戳)") |
|
|
|
@JsonProperty("TestID") |
|
|
|
private String TestID; |
|
|
|
@ApiModelProperty("测试日期") |
|
|
|
@JsonProperty("TestDate") |
|
|
|
@NotNull(message = "测试日期不能为空") |
|
|
|
private String TestDate; |
|
|
|
@ApiModelProperty("测试者姓名") |
|
|
|
@JsonProperty("Name") |
|
|
|
private String Name; |
|
|
|
@ApiModelProperty("测试者性别,男1女2") |
|
|
|
@JsonProperty("Sex") |
|
|
|
private String Sex; |
|
|
|
@ApiModelProperty("测试者出生年份") |
|
|
|
@JsonProperty("BirthYear") |
|
|
|
@JsonFormat(pattern = "yyyy") |
|
|
|
private String BirthYear; |
|
|
|
|
|
|
|
private List<Detail> data; |
|
|
|
private Advice advice; |
|
|
|
|
|
|
|
//体测结果数据*
|
|
|
|
|
|
|
|
public String getTitle() { |
|
|
|
return Title; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTitle(String title) { |
|
|
|
Title = title; |
|
|
|
} |
|
|
|
@JsonProperty("") |
|
|
|
public String getUUID() { |
|
|
|
return UUID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setUUID(String UUID) { |
|
|
|
this.UUID = UUID; |
|
|
|
} |
|
|
|
@JsonProperty("") |
|
|
|
public String getUID() { |
|
|
|
return UID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setUID(String UID) { |
|
|
|
this.UID = UID; |
|
|
|
} |
|
|
|
@JsonProperty("") |
|
|
|
public String getTestID() { |
|
|
|
return TestID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTestID(String testID) { |
|
|
|
TestID = testID; |
|
|
|
} |
|
|
|
@JsonProperty("") |
|
|
|
public String getTestDate() { |
|
|
|
return TestDate; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTestDate(String testDate) { |
|
|
|
TestDate = testDate; |
|
|
|
} |
|
|
|
|
|
|
|
public String getName() { |
|
|
|
return Name; |
|
|
|
} |
|
|
|
|
|
|
|
public void setName(String name) { |
|
|
|
Name = name; |
|
|
|
} |
|
|
|
|
|
|
|
public String getSex() { |
|
|
|
return Sex; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSex(String sex) { |
|
|
|
Sex = sex; |
|
|
|
} |
|
|
|
@JsonFormat(pattern = "yyyy") |
|
|
|
public String getBirthYear() { |
|
|
|
return BirthYear; |
|
|
|
} |
|
|
|
@JsonFormat(pattern = "yyyy") |
|
|
|
public void setBirthYear(String birthYear) { |
|
|
|
BirthYear = birthYear; |
|
|
|
} |
|
|
|
|
|
|
|
public List<Detail> getData() { |
|
|
|
return data; |
|
|
|
} |
|
|
|
|
|
|
|
public void setData(List<Detail> data) { |
|
|
|
this.data = data; |
|
|
|
} |
|
|
|
|
|
|
|
public Advice getAdvice() { |
|
|
|
return advice; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAdvice(Advice advice) { |
|
|
|
this.advice = advice; |
|
|
|
} |
|
|
|
|
|
|
|
public static class Detail { |
|
|
|
private String TestID; |
|
|
|
@JsonProperty("Item") |
|
|
|
private String Item; |
|
|
|
@JsonProperty("Value") |
|
|
|
private String Value; |
|
|
|
@JsonProperty("Score") |
|
|
|
private String Score; |
|
|
|
|
|
|
|
@JsonProperty("Item") |
|
|
|
public String getItem() { |
|
|
|
return Item; |
|
|
|
} |
|
|
|
|
|
|
|
public void setItem(String item) { |
|
|
|
Item = item; |
|
|
|
} |
|
|
|
|
|
|
|
@JsonProperty("Value") |
|
|
|
public String getValue() { |
|
|
|
return Value; |
|
|
|
} |
|
|
|
|
|
|
|
public void setValue(String value) { |
|
|
|
Value = value; |
|
|
|
} |
|
|
|
|
|
|
|
@JsonProperty("Score") |
|
|
|
public String getScore() { |
|
|
|
return Score; |
|
|
|
} |
|
|
|
|
|
|
|
public void setScore(String score) { |
|
|
|
Score = score; |
|
|
|
} |
|
|
|
|
|
|
|
public String getTestID() { |
|
|
|
return TestID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTestID(String testID) { |
|
|
|
TestID = testID; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public static class Advice { |
|
|
|
@JsonProperty("SportPrinciple") |
|
|
|
private String SportPrinciple; //运动原则
|
|
|
|
@JsonProperty("Aerobic") |
|
|
|
private String Aerobic; //有氧运动内容
|
|
|
|
@JsonProperty("Strength") |
|
|
|
private String Strength; //力量运动内容
|
|
|
|
@JsonProperty("Flexibility") |
|
|
|
private String Flexibility; //柔韧运动内容
|
|
|
|
@JsonProperty("FunctionExcercise") |
|
|
|
private String FunctionExcercise; //功能性练习内容
|
|
|
|
@JsonProperty("Caution") |
|
|
|
private String Caution; //注意事项
|
|
|
|
private String TestID; |
|
|
|
@JsonProperty("SportPrinciple") |
|
|
|
public String getSportPrinciple() { |
|
|
|
return SportPrinciple; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSportPrinciple(String sportPrinciple) { |
|
|
|
SportPrinciple = sportPrinciple; |
|
|
|
} |
|
|
|
|
|
|
|
@JsonProperty("Aerobic") |
|
|
|
public String getAerobic() { |
|
|
|
return Aerobic; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAerobic(String aerobic) { |
|
|
|
Aerobic = aerobic; |
|
|
|
} |
|
|
|
|
|
|
|
@JsonProperty("Strength") |
|
|
|
public String getStrength() { |
|
|
|
return Strength; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStrength(String strength) { |
|
|
|
Strength = strength; |
|
|
|
} |
|
|
|
|
|
|
|
@JsonProperty("Flexibility") |
|
|
|
public String getFlexibility() { |
|
|
|
return Flexibility; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFlexibility(String flexibility) { |
|
|
|
Flexibility = flexibility; |
|
|
|
} |
|
|
|
|
|
|
|
@JsonProperty("FunctionExcercise") |
|
|
|
public String getFunctionExcercise() { |
|
|
|
return FunctionExcercise; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFunctionExcercise(String functionExcercise) { |
|
|
|
FunctionExcercise = functionExcercise; |
|
|
|
} |
|
|
|
|
|
|
|
@JsonProperty("Caution") |
|
|
|
public String getCaution() { |
|
|
|
return Caution; |
|
|
|
} |
|
|
|
|
|
|
|
public void setCaution(String caution) { |
|
|
|
Caution = caution; |
|
|
|
} |
|
|
|
|
|
|
|
public String getTestID() { |
|
|
|
return TestID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTestID(String testID) { |
|
|
|
TestID = testID; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public static class BcaData { |
|
|
|
@ApiModelProperty("当前测得体质测试类数据标题") |
|
|
|
@JsonProperty("Title") |
|
|
|
private String Title; |
|
|
|
@ApiModelProperty("单位代码(或科室代码、项目代码)") |
|
|
|
@JsonProperty("UUID") |
|
|
|
private String UUID; |
|
|
|
@ApiModelProperty("人员编号") |
|
|
|
@JsonProperty("UID") |
|
|
|
private String UID; |
|
|
|
@ApiModelProperty("测试序号(时间戳)") |
|
|
|
@JsonProperty("TestID") |
|
|
|
private String TestID; |
|
|
|
@ApiModelProperty("测试日期") |
|
|
|
@JsonProperty("TestDate") |
|
|
|
private String TestDate; |
|
|
|
@ApiModelProperty("测试者姓名") |
|
|
|
@JsonProperty("Name") |
|
|
|
private String Name; |
|
|
|
@ApiModelProperty("测试者性别,男1女2") |
|
|
|
@JsonProperty("Sex") |
|
|
|
private String Sex; |
|
|
|
private Data data; |
|
|
|
private Advice advice; |
|
|
|
|
|
|
|
public String getTitle() { |
|
|
|
return Title; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTitle(String title) { |
|
|
|
Title = title; |
|
|
|
} |
|
|
|
|
|
|
|
public String getUUID() { |
|
|
|
return UUID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setUUID(String UUID) { |
|
|
|
this.UUID = UUID; |
|
|
|
} |
|
|
|
|
|
|
|
public String getUID() { |
|
|
|
return UID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setUID(String UID) { |
|
|
|
this.UID = UID; |
|
|
|
} |
|
|
|
|
|
|
|
public String getTestID() { |
|
|
|
return TestID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTestID(String testID) { |
|
|
|
TestID = testID; |
|
|
|
} |
|
|
|
|
|
|
|
public String getTestDate() { |
|
|
|
return TestDate; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTestDate(String testDate) { |
|
|
|
TestDate = testDate; |
|
|
|
} |
|
|
|
|
|
|
|
public String getName() { |
|
|
|
return Name; |
|
|
|
} |
|
|
|
|
|
|
|
public void setName(String name) { |
|
|
|
Name = name; |
|
|
|
} |
|
|
|
|
|
|
|
public String getSex() { |
|
|
|
return Sex; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSex(String sex) { |
|
|
|
Sex = sex; |
|
|
|
} |
|
|
|
|
|
|
|
public Data getData() { |
|
|
|
return data; |
|
|
|
} |
|
|
|
|
|
|
|
public void setData(Data data) { |
|
|
|
this.data = data; |
|
|
|
} |
|
|
|
|
|
|
|
public Advice getAdvice() { |
|
|
|
return advice; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAdvice(Advice advice) { |
|
|
|
this.advice = advice; |
|
|
|
} |
|
|
|
|
|
|
|
public static class Data { |
|
|
|
@JsonProperty("TestID") |
|
|
|
private String TestID; |
|
|
|
@JsonProperty("UID") |
|
|
|
private String UID; |
|
|
|
@JsonProperty("UUID") |
|
|
|
private String UUID; |
|
|
|
@JsonProperty("Name") |
|
|
|
private String Name; |
|
|
|
@JsonProperty("TestDate") |
|
|
|
private String TestDate; |
|
|
|
@JsonProperty("Sex") |
|
|
|
private String Sex; |
|
|
|
@JsonProperty("Weight") |
|
|
|
private String Weight; //体重
|
|
|
|
@JsonProperty("Fat") |
|
|
|
private String Fat; //脂肪
|
|
|
|
@JsonProperty("Bone") |
|
|
|
private String Bone; //骨质
|
|
|
|
@JsonProperty("Protein") |
|
|
|
private String Protein; //蛋白质
|
|
|
|
@JsonProperty("Water") |
|
|
|
private String Water; //水分
|
|
|
|
@JsonProperty("Muscle") |
|
|
|
private String Muscle; //肌肉
|
|
|
|
@JsonProperty("SMM") |
|
|
|
private String SMM; //骨骼肌
|
|
|
|
@JsonProperty("PBF") |
|
|
|
private String PBF; //体脂百分比
|
|
|
|
@JsonProperty("BMI") |
|
|
|
private String BMI; //体质指数
|
|
|
|
@JsonProperty("BMR") |
|
|
|
private String BMR; //基础代谢
|
|
|
|
@JsonProperty("Edema") |
|
|
|
private String Edema; //水肿系数(2位小数)
|
|
|
|
@JsonProperty("VFI") |
|
|
|
private String VFI; //内脏脂肪指数
|
|
|
|
@JsonProperty("BodyAge") |
|
|
|
private String BodyAge; //身体年龄
|
|
|
|
@JsonProperty("Score") |
|
|
|
private String Score; //健康评分
|
|
|
|
@JsonProperty("BodyType") |
|
|
|
private String BodyType; //体型判定
|
|
|
|
@JsonProperty("Standard_weight") |
|
|
|
private String Standard_weight; //目标体重
|
|
|
|
@JsonProperty("Weight_control") |
|
|
|
private String Weight_control; //体重控制
|
|
|
|
@JsonProperty("Fat_control") |
|
|
|
private String Fat_control; //脂肪控制量
|
|
|
|
@JsonProperty("Muscle_control") |
|
|
|
private String Muscle_control;//肌肉控制量
|
|
|
|
@JsonProperty("ASMI") |
|
|
|
private String ASMI; //四肢骨骼肌指数
|
|
|
|
@JsonProperty("WeightMax") |
|
|
|
private String WeightMax; //体重正常范围的高值
|
|
|
|
@JsonProperty("WeightMin") |
|
|
|
private String WeightMin; //体重正常范围的低值
|
|
|
|
@JsonProperty("FatMax") |
|
|
|
private String FatMax;//体重正常范围的高值
|
|
|
|
@JsonProperty("FatMin") |
|
|
|
private String FatMin; //体重正常范围的低值
|
|
|
|
@JsonProperty("BoneMax") |
|
|
|
private String BoneMax; //骨质正常范围的高值
|
|
|
|
@JsonProperty("BoneMin") |
|
|
|
private String BoneMin; //骨质正常范围的低值
|
|
|
|
@JsonProperty("ProteinMax") |
|
|
|
private String ProteinMax; //蛋白质正常范围的高值
|
|
|
|
@JsonProperty("ProteinMin") |
|
|
|
private String ProteinMin; //蛋白质正常范围的低值
|
|
|
|
@JsonProperty("WaterMax") |
|
|
|
private String WaterMax;//水分正常范围的高值
|
|
|
|
@JsonProperty("WaterMin") |
|
|
|
private String WaterMin; //水分正常范围的低值
|
|
|
|
@JsonProperty("MuscleMax") |
|
|
|
private String MuscleMax; //肌肉正常范围的高值
|
|
|
|
@JsonProperty("MuscleMin") |
|
|
|
private String MuscleMin; //肌肉正常范围的低值
|
|
|
|
@JsonProperty("SMMMax") |
|
|
|
private String SMMMax;//骨骼肌正常范围的高值
|
|
|
|
@JsonProperty("SMMMin") |
|
|
|
private String SMMMin;//骨骼肌正常范围的低值
|
|
|
|
@JsonProperty("PBFMax") |
|
|
|
private String PBFMax; //体脂率正常范围的高值
|
|
|
|
@JsonProperty("PBFMin") |
|
|
|
private String PBFMin; //体脂率正常范围的低值
|
|
|
|
@JsonProperty("BMIMax") |
|
|
|
private String BMIMax; //体质指数正常范围的高值
|
|
|
|
@JsonProperty("BMIMin") |
|
|
|
private String BMIMin; //体质指数正常范围的低值
|
|
|
|
@JsonProperty("WHRMax") |
|
|
|
private String WHRMax;//腰臀比正常范围的高值
|
|
|
|
@JsonProperty("WHRMin") |
|
|
|
private String WHRMin;//腰臀比正常范围的低值
|
|
|
|
@JsonProperty("EdemaMax") |
|
|
|
private String EdemaMax; //水肿系数正常范围的高值
|
|
|
|
@JsonProperty("EdemaMin") |
|
|
|
private String EdemaMin; //水肿系数正常范围的低值
|
|
|
|
@JsonProperty("VFIMax") |
|
|
|
private String VFIMax; //内脏脂肪指数正常范围的高值
|
|
|
|
@JsonProperty("VFIMin") |
|
|
|
private String VFIMin; //内脏脂肪指数正常范围的低值
|
|
|
|
@JsonProperty("Diagnosis") |
|
|
|
private String Diagnosis; //诊断结论(UTF-8编码)
|
|
|
|
|
|
|
|
public String getTestID() { |
|
|
|
return TestID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTestID(String testID) { |
|
|
|
TestID = testID; |
|
|
|
} |
|
|
|
|
|
|
|
public String getUID() { |
|
|
|
return UID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setUID(String UID) { |
|
|
|
this.UID = UID; |
|
|
|
} |
|
|
|
|
|
|
|
public String getUUID() { |
|
|
|
return UUID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setUUID(String UUID) { |
|
|
|
this.UUID = UUID; |
|
|
|
} |
|
|
|
|
|
|
|
public String getName() { |
|
|
|
return Name; |
|
|
|
} |
|
|
|
|
|
|
|
public void setName(String name) { |
|
|
|
Name = name; |
|
|
|
} |
|
|
|
|
|
|
|
public String getTestDate() { |
|
|
|
return TestDate; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTestDate(String testDate) { |
|
|
|
TestDate = testDate; |
|
|
|
} |
|
|
|
|
|
|
|
public String getSex() { |
|
|
|
return Sex; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSex(String sex) { |
|
|
|
Sex = sex; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWeight() { |
|
|
|
return Weight; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWeight(String weight) { |
|
|
|
Weight = weight; |
|
|
|
} |
|
|
|
|
|
|
|
public String getFat() { |
|
|
|
return Fat; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFat(String fat) { |
|
|
|
Fat = fat; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBone() { |
|
|
|
return Bone; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBone(String bone) { |
|
|
|
Bone = bone; |
|
|
|
} |
|
|
|
|
|
|
|
public String getProtein() { |
|
|
|
return Protein; |
|
|
|
} |
|
|
|
|
|
|
|
public void setProtein(String protein) { |
|
|
|
Protein = protein; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWater() { |
|
|
|
return Water; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWater(String waterx) { |
|
|
|
Water = waterx; |
|
|
|
} |
|
|
|
|
|
|
|
public String getMuscle() { |
|
|
|
return Muscle; |
|
|
|
} |
|
|
|
|
|
|
|
public void setMuscle(String muscle) { |
|
|
|
Muscle = muscle; |
|
|
|
} |
|
|
|
|
|
|
|
public String getSMM() { |
|
|
|
return SMM; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSMM(String SMM) { |
|
|
|
this.SMM = SMM; |
|
|
|
} |
|
|
|
|
|
|
|
public String getPBF() { |
|
|
|
return PBF; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPBF(String PBF) { |
|
|
|
this.PBF = PBF; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBMI() { |
|
|
|
return BMI; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBMI(String BMI) { |
|
|
|
this.BMI = BMI; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBMR() { |
|
|
|
return BMR; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBMR(String BMR) { |
|
|
|
this.BMR = BMR; |
|
|
|
} |
|
|
|
|
|
|
|
public String getEdema() { |
|
|
|
return Edema; |
|
|
|
} |
|
|
|
|
|
|
|
public void setEdema(String edema) { |
|
|
|
Edema = edema; |
|
|
|
} |
|
|
|
|
|
|
|
public String getVFI() { |
|
|
|
return VFI; |
|
|
|
} |
|
|
|
|
|
|
|
public void setVFI(String VFI) { |
|
|
|
this.VFI = VFI; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBodyAge() { |
|
|
|
return BodyAge; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBodyAge(String bodyAge) { |
|
|
|
BodyAge = bodyAge; |
|
|
|
} |
|
|
|
|
|
|
|
public String getScore() { |
|
|
|
return Score; |
|
|
|
} |
|
|
|
|
|
|
|
public void setScore(String score) { |
|
|
|
Score = score; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBodyType() { |
|
|
|
return BodyType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBodyType(String bodyType) { |
|
|
|
BodyType = bodyType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStandard_weight() { |
|
|
|
return Standard_weight; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStandard_weight(String standard_weight) { |
|
|
|
Standard_weight = standard_weight; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWeight_control() { |
|
|
|
return Weight_control; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWeight_control(String weight_control) { |
|
|
|
Weight_control = weight_control; |
|
|
|
} |
|
|
|
|
|
|
|
public String getFat_control() { |
|
|
|
return Fat_control; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFat_control(String fat_control) { |
|
|
|
Fat_control = fat_control; |
|
|
|
} |
|
|
|
|
|
|
|
public String getMuscle_control() { |
|
|
|
return Muscle_control; |
|
|
|
} |
|
|
|
|
|
|
|
public void setMuscle_control(String muscle_control) { |
|
|
|
Muscle_control = muscle_control; |
|
|
|
} |
|
|
|
|
|
|
|
public String getASMI() { |
|
|
|
return ASMI; |
|
|
|
} |
|
|
|
|
|
|
|
public void setASMI(String ASMI) { |
|
|
|
this.ASMI = ASMI; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWeightMax() { |
|
|
|
return WeightMax; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWeightMax(String weightMax) { |
|
|
|
WeightMax = weightMax; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWeightMin() { |
|
|
|
return WeightMin; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWeightMin(String weightMin) { |
|
|
|
WeightMin = weightMin; |
|
|
|
} |
|
|
|
|
|
|
|
public String getFatMax() { |
|
|
|
return FatMax; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFatMax(String fatMax) { |
|
|
|
FatMax = fatMax; |
|
|
|
} |
|
|
|
|
|
|
|
public String getFatMin() { |
|
|
|
return FatMin; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFatMin(String fatMin) { |
|
|
|
FatMin = fatMin; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBoneMax() { |
|
|
|
return BoneMax; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBoneMax(String boneMax) { |
|
|
|
BoneMax = boneMax; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBoneMin() { |
|
|
|
return BoneMin; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBoneMin(String boneMin) { |
|
|
|
BoneMin = boneMin; |
|
|
|
} |
|
|
|
|
|
|
|
public String getProteinMax() { |
|
|
|
return ProteinMax; |
|
|
|
} |
|
|
|
|
|
|
|
public void setProteinMax(String proteinMax) { |
|
|
|
ProteinMax = proteinMax; |
|
|
|
} |
|
|
|
|
|
|
|
public String getProteinMin() { |
|
|
|
return ProteinMin; |
|
|
|
} |
|
|
|
|
|
|
|
public void setProteinMin(String proteinMin) { |
|
|
|
ProteinMin = proteinMin; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWaterMax() { |
|
|
|
return WaterMax; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWaterMax(String waterMax) { |
|
|
|
WaterMax = waterMax; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWaterMin() { |
|
|
|
return WaterMin; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWaterMin(String waterMin) { |
|
|
|
WaterMin = waterMin; |
|
|
|
} |
|
|
|
|
|
|
|
public String getMuscleMax() { |
|
|
|
return MuscleMax; |
|
|
|
} |
|
|
|
|
|
|
|
public void setMuscleMax(String muscleMax) { |
|
|
|
MuscleMax = muscleMax; |
|
|
|
} |
|
|
|
|
|
|
|
public String getMuscleMin() { |
|
|
|
return MuscleMin; |
|
|
|
} |
|
|
|
|
|
|
|
public void setMuscleMin(String muscleMin) { |
|
|
|
MuscleMin = muscleMin; |
|
|
|
} |
|
|
|
|
|
|
|
public String getSMMMax() { |
|
|
|
return SMMMax; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSMMMax(String SMMMax) { |
|
|
|
this.SMMMax = SMMMax; |
|
|
|
} |
|
|
|
|
|
|
|
public String getSMMMin() { |
|
|
|
return SMMMin; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSMMMin(String SMMMin) { |
|
|
|
this.SMMMin = SMMMin; |
|
|
|
} |
|
|
|
|
|
|
|
public String getPBFMax() { |
|
|
|
return PBFMax; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPBFMax(String PBFMax) { |
|
|
|
this.PBFMax = PBFMax; |
|
|
|
} |
|
|
|
|
|
|
|
public String getPBFMin() { |
|
|
|
return PBFMin; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPBFMin(String PBFMin) { |
|
|
|
this.PBFMin = PBFMin; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBMIMax() { |
|
|
|
return BMIMax; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBMIMax(String BMIMax) { |
|
|
|
this.BMIMax = BMIMax; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBMIMin() { |
|
|
|
return BMIMin; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBMIMin(String BMIMin) { |
|
|
|
this.BMIMin = BMIMin; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWHRMax() { |
|
|
|
return WHRMax; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWHRMax(String WHRMax) { |
|
|
|
this.WHRMax = WHRMax; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWHRMin() { |
|
|
|
return WHRMin; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWHRMin(String WHRMin) { |
|
|
|
this.WHRMin = WHRMin; |
|
|
|
} |
|
|
|
|
|
|
|
public String getEdemaMax() { |
|
|
|
return EdemaMax; |
|
|
|
} |
|
|
|
|
|
|
|
public void setEdemaMax(String edemaMax) { |
|
|
|
EdemaMax = edemaMax; |
|
|
|
} |
|
|
|
|
|
|
|
public String getEdemaMin() { |
|
|
|
return EdemaMin; |
|
|
|
} |
|
|
|
|
|
|
|
public void setEdemaMin(String edemaMin) { |
|
|
|
EdemaMin = edemaMin; |
|
|
|
} |
|
|
|
|
|
|
|
public String getVFIMax() { |
|
|
|
return VFIMax; |
|
|
|
} |
|
|
|
|
|
|
|
public void setVFIMax(String VFIMax) { |
|
|
|
this.VFIMax = VFIMax; |
|
|
|
} |
|
|
|
|
|
|
|
public String getVFIMin() { |
|
|
|
return VFIMin; |
|
|
|
} |
|
|
|
|
|
|
|
public void setVFIMin(String VFIMin) { |
|
|
|
this.VFIMin = VFIMin; |
|
|
|
} |
|
|
|
|
|
|
|
public String getDiagnosis() { |
|
|
|
return Diagnosis; |
|
|
|
} |
|
|
|
|
|
|
|
public void setDiagnosis(String diagnosis) { |
|
|
|
Diagnosis = diagnosis; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class Advice { |
|
|
|
@JsonProperty("TestID") |
|
|
|
private String TestID; |
|
|
|
private String PersonType; //*人员类型
|
|
|
|
private String DailyEnergy; //日能量需求(单位:kcal)
|
|
|
|
private String DietPrinciple; //膳食原则
|
|
|
|
private String StandardBreakfast; //示范食谱-早餐(使用\n换行,下同)
|
|
|
|
private String StandardLunch; //示范食谱-午餐
|
|
|
|
private String StandardDinner; //示范食谱-晚餐
|
|
|
|
private String StandardNutrition; //示范食谱-营养素
|
|
|
|
|
|
|
|
public String getTestID() { |
|
|
|
return TestID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTestID(String testID) { |
|
|
|
TestID = testID; |
|
|
|
} |
|
|
|
|
|
|
|
public String getPersonType() { |
|
|
|
return PersonType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPersonType(String personType) { |
|
|
|
PersonType = personType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getDailyEnergy() { |
|
|
|
return DailyEnergy; |
|
|
|
} |
|
|
|
|
|
|
|
public void setDailyEnergy(String dailyEnergy) { |
|
|
|
DailyEnergy = dailyEnergy; |
|
|
|
} |
|
|
|
|
|
|
|
public String getDietPrinciple() { |
|
|
|
return DietPrinciple; |
|
|
|
} |
|
|
|
|
|
|
|
public void setDietPrinciple(String dietPrinciple) { |
|
|
|
DietPrinciple = dietPrinciple; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStandardBreakfast() { |
|
|
|
return StandardBreakfast; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStandardBreakfast(String standardBreakfast) { |
|
|
|
StandardBreakfast = standardBreakfast; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStandardLunch() { |
|
|
|
return StandardLunch; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStandardLunch(String standardLunch) { |
|
|
|
StandardLunch = standardLunch; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStandardDinner() { |
|
|
|
return StandardDinner; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStandardDinner(String standardDinner) { |
|
|
|
StandardDinner = standardDinner; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStandardNutrition() { |
|
|
|
return StandardNutrition; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStandardNutrition(String standardNutrition) { |
|
|
|
StandardNutrition = standardNutrition; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|