Commit 05bd8781092de1a615542094b15bc2c1e9cd422e

Authored by dongqin
1 parent 6f652e1c9d

添加微信测量信息model

Showing 2 changed files with 217 additions and 1 deletions

platform-dal/src/main/java/com/lyms/platform/beans/SerialIdEnum.java View file @ 05bd878
... ... @@ -85,7 +85,8 @@
85 85 TemporaryWeightModel("TemporaryWeightModel", 97531049591L),
86 86 TemporaryBloodModel("TemporaryBloodModel", 97541049591L),
87 87 TemporaryBloodSugarModel("TemporaryWeightModel", 97551049591L),
88   - BabyEyeCheck("BabyEyeCheck", 97521039591L);
  88 + BabyEyeCheck("BabyEyeCheck", 97521039591L),
  89 + WxMeasureInfoModel("WxMeasureInfoModel", 3394363185022868106L);
89 90  
90 91 private String cname;
91 92 private Long cid;
platform-dal/src/main/java/com/lyms/platform/pojo/WxMeasureInfoModel.java View file @ 05bd878
  1 +package com.lyms.platform.pojo;
  2 +
  3 +import com.lyms.platform.beans.SerialIdEnum;
  4 +import com.lyms.platform.common.result.BaseModel;
  5 +import org.springframework.data.mongodb.core.mapping.Document;
  6 +
  7 +import java.io.Serializable;
  8 +import java.util.Date;
  9 +import java.util.List;
  10 +import java.util.Map;
  11 +
  12 +/**
  13 + *
  14 + * @Author dongqin
  15 + * @Description 小程序孕妇宫高、腹围等/儿保一般测量信息录入
  16 + * @Date 14:34 2019/5/30
  17 + */
  18 +@Document(collection = "lyms_wx_measure_info")
  19 +public class WxMeasureInfoModel extends BaseModel implements Serializable {
  20 +
  21 + private static final long serialVersionUID = SerialIdEnum.WxMeasureInfoModel.getCid();
  22 +
  23 + private String id;
  24 +
  25 + /**
  26 + * 孕妇/儿保 id
  27 + */
  28 + private String patientId;
  29 +
  30 + /**
  31 + * 医院ID
  32 + */
  33 + private String hospitalId;
  34 +
  35 + /**
  36 + * 1-孕妇小程序 2-儿保小程序
  37 + */
  38 + private String type;
  39 +
  40 + /**
  41 + * 创建更新时间
  42 + */
  43 + private Date createTime;
  44 +
  45 + /**
  46 + * 体温
  47 + */
  48 + private String temperature;
  49 +
  50 + /**
  51 + * 身高
  52 + */
  53 + private String height;
  54 +
  55 + /**
  56 + * 体重
  57 + */
  58 + private String weight;
  59 +
  60 + /**
  61 + * 头围
  62 + */
  63 + private String headWidth;
  64 +
  65 + /**
  66 + * 胸围
  67 + */
  68 + private String bust;
  69 +
  70 + /**
  71 + * 喂养
  72 + */
  73 + private String feed;
  74 +
  75 +
  76 + /**
  77 + * 宫高
  78 + */
  79 + private String gongGo;
  80 +
  81 + /**
  82 + * 腹围
  83 + */
  84 + private String abdomen;
  85 +
  86 + /**
  87 + * 胎心率
  88 + */
  89 + private String heartRate;
  90 +
  91 + /**
  92 + * 下次产检时间
  93 + */
  94 + private List<Map> checkDates;
  95 +
  96 + public String getId() {
  97 + return id;
  98 + }
  99 +
  100 + public void setId(String id) {
  101 + this.id = id;
  102 + }
  103 +
  104 + public String getPatientId() {
  105 + return patientId;
  106 + }
  107 +
  108 + public void setPatientId(String patientId) {
  109 + this.patientId = patientId;
  110 + }
  111 +
  112 + public String getHospitalId() {
  113 + return hospitalId;
  114 + }
  115 +
  116 + public void setHospitalId(String hospitalId) {
  117 + this.hospitalId = hospitalId;
  118 + }
  119 +
  120 + public String getType() {
  121 + return type;
  122 + }
  123 +
  124 + public void setType(String type) {
  125 + this.type = type;
  126 + }
  127 +
  128 + public Date getCreateTime() {
  129 + return createTime;
  130 + }
  131 +
  132 + public void setCreateTime(Date createTime) {
  133 + this.createTime = createTime;
  134 + }
  135 +
  136 + public String getTemperature() {
  137 + return temperature;
  138 + }
  139 +
  140 + public void setTemperature(String temperature) {
  141 + this.temperature = temperature;
  142 + }
  143 +
  144 + public String getHeight() {
  145 + return height;
  146 + }
  147 +
  148 + public void setHeight(String height) {
  149 + this.height = height;
  150 + }
  151 +
  152 + public String getWeight() {
  153 + return weight;
  154 + }
  155 +
  156 + public void setWeight(String weight) {
  157 + this.weight = weight;
  158 + }
  159 +
  160 + public String getHeadWidth() {
  161 + return headWidth;
  162 + }
  163 +
  164 + public void setHeadWidth(String headWidth) {
  165 + this.headWidth = headWidth;
  166 + }
  167 +
  168 + public String getBust() {
  169 + return bust;
  170 + }
  171 +
  172 + public void setBust(String bust) {
  173 + this.bust = bust;
  174 + }
  175 +
  176 + public String getFeed() {
  177 + return feed;
  178 + }
  179 +
  180 + public void setFeed(String feed) {
  181 + this.feed = feed;
  182 + }
  183 +
  184 + public String getGongGo() {
  185 + return gongGo;
  186 + }
  187 +
  188 + public void setGongGo(String gongGo) {
  189 + this.gongGo = gongGo;
  190 + }
  191 +
  192 + public String getAbdomen() {
  193 + return abdomen;
  194 + }
  195 +
  196 + public void setAbdomen(String abdomen) {
  197 + this.abdomen = abdomen;
  198 + }
  199 +
  200 + public String getHeartRate() {
  201 + return heartRate;
  202 + }
  203 +
  204 + public void setHeartRate(String heartRate) {
  205 + this.heartRate = heartRate;
  206 + }
  207 +
  208 + public List<Map> getCheckDates() {
  209 + return checkDates;
  210 + }
  211 +
  212 + public void setCheckDates(List<Map> checkDates) {
  213 + this.checkDates = checkDates;
  214 + }
  215 +}