Commit c1f7ff584ea51a6dfa4a96382234f705d54f6737

Authored by gengxiaokai
1 parent 9537eaa543

承德公共卫生接口

Showing 4 changed files with 572 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/hospitalapi/pojo/CdGwChoice.java View file @ c1f7ff5
  1 +package com.lyms.hospitalapi.pojo;
  2 +
  3 +/**
  4 + * Created by Administrator on 2018/4/19.
  5 + */
  6 +public class CdGwChoice {
  7 +
  8 + private String codeType;//类型
  9 + private String code;//代码
  10 + private String name;//名称
  11 +
  12 + public String getCodeType() {
  13 + return codeType;
  14 + }
  15 +
  16 + public void setCodeType(String codeType) {
  17 + this.codeType = codeType;
  18 + }
  19 +
  20 + public String getName() {
  21 + return name;
  22 + }
  23 +
  24 + public void setName(String name) {
  25 + this.name = name;
  26 + }
  27 +
  28 + public String getCode() {
  29 + return code;
  30 + }
  31 +
  32 + public void setCode(String code) {
  33 + this.code = code;
  34 + }
  35 +}
platform-operate-api/src/main/java/com/lyms/hospitalapi/pojo/CdGwDisease.java View file @ c1f7ff5
  1 +package com.lyms.hospitalapi.pojo;
  2 +
  3 +/**
  4 + * Created by Administrator on 2018/4/19.
  5 + */
  6 +public class CdGwDisease {
  7 +
  8 + private String diseaseCode;//代码
  9 + private String diseaseName;//名称
  10 + private String confirmDate;//时间
  11 +
  12 + public String getDiseaseCode() {
  13 + return diseaseCode;
  14 + }
  15 +
  16 + public void setDiseaseCode(String diseaseCode) {
  17 + this.diseaseCode = diseaseCode;
  18 + }
  19 +
  20 + public String getDiseaseName() {
  21 + return diseaseName;
  22 + }
  23 +
  24 + public void setDiseaseName(String diseaseName) {
  25 + this.diseaseName = diseaseName;
  26 + }
  27 +
  28 + public String getConfirmDate() {
  29 + return confirmDate;
  30 + }
  31 +
  32 + public void setConfirmDate(String confirmDate) {
  33 + this.confirmDate = confirmDate;
  34 + }
  35 +}
platform-operate-api/src/main/java/com/lyms/hospitalapi/pojo/CdGwPast.java View file @ c1f7ff5
  1 +package com.lyms.hospitalapi.pojo;
  2 +
  3 +/**
  4 + * Created by Administrator on 2018/4/19.
  5 + */
  6 +public class CdGwPast {
  7 +
  8 + private String historyType;//手术类型
  9 + private String choiceStatus;//状态
  10 + private String orderNo;//编号
  11 + private String historyName;//名称
  12 + private String confirmDate;//时间
  13 +
  14 + public String getHistoryType() {
  15 + return historyType;
  16 + }
  17 +
  18 + public void setHistoryType(String historyType) {
  19 + this.historyType = historyType;
  20 + }
  21 +
  22 + public String getChoiceStatus() {
  23 + return choiceStatus;
  24 + }
  25 +
  26 + public void setChoiceStatus(String choiceStatus) {
  27 + this.choiceStatus = choiceStatus;
  28 + }
  29 +
  30 + public String getOrderNo() {
  31 + return orderNo;
  32 + }
  33 +
  34 + public void setOrderNo(String orderNo) {
  35 + this.orderNo = orderNo;
  36 + }
  37 +
  38 + public String getHistoryName() {
  39 + return historyName;
  40 + }
  41 +
  42 + public void setHistoryName(String historyName) {
  43 + this.historyName = historyName;
  44 + }
  45 +
  46 + public String getConfirmDate() {
  47 + return confirmDate;
  48 + }
  49 +
  50 + public void setConfirmDate(String confirmDate) {
  51 + this.confirmDate = confirmDate;
  52 + }
  53 +}
platform-operate-api/src/main/java/com/lyms/hospitalapi/pojo/HealthRecord.java View file @ c1f7ff5
1 1 package com.lyms.hospitalapi.pojo;
2 2  
3 3 import java.util.Date;
  4 +import java.util.List;
4 5  
5 6 /**
6 7 * Created by Administrator on 2018/4/18.
7 8  
... ... @@ -37,8 +38,454 @@
37 38 private String occupationCode;//职业代码
38 39 private String marriageCode;//婚姻状况
39 40 private String medicalPayWay;//医疗费用支付方式
40   - /*private String drugAllergy;//药物过敏史
41   - private String exposureHistory;//暴露史*/
  41 + private List<CdGwChoice> recordChoice;//类型
  42 + private List<CdGwDisease> personDisease;//病史
  43 + private List<CdGwPast> personPastHistory;//手术史
  44 + private String geneticDiseaseHistoryCode;//遗传病史代码
  45 + private String geneticDiseaseHistoryName;//遗传病史名称
  46 + private String isDisabilityEyesight;//是否视力残疾
  47 + private String isDisabilityHearing;//是否听力残疾
  48 + private String isDisabilityLanguage;//是否言语残疾
  49 + private String isDisabilityLimbs;//是否肢体残疾
  50 + private String isDisabilityBrain;//是否智力残疾
  51 + private String isDisabilityMind;//是否精神残疾
  52 + private String kitchenExhaustCode;//厨房排风设施
  53 + private String toiletCode;//厕所
  54 + private String livestockFenceCode;//禽畜栏
  55 + private String createOrgId;//录入机构ID
  56 + private String orgName;//录入机构名称
  57 + private String creatorId;//录入人ID
  58 + private String creator;//录入人名称
  59 + private String modifiedOrgId;//最后修改机构ID
  60 + private String modifiedOrgName;//最后修改机构名称
  61 + private String modifierId;//最后修改人ID
  62 + private String modifier;//最后修改人
  63 + private String remarks;//备注
  64 + private String isAppCreate="9";//上传标识
42 65  
  66 +
  67 + public String getPersonInfoId() {
  68 + return personInfoId;
  69 + }
  70 +
  71 + public void setPersonInfoId(String personInfoId) {
  72 + this.personInfoId = personInfoId;
  73 + }
  74 +
  75 + public String getName() {
  76 + return name;
  77 + }
  78 +
  79 + public void setName(String name) {
  80 + this.name = name;
  81 + }
  82 +
  83 + public String getPinYinStr() {
  84 + return pinYinStr;
  85 + }
  86 +
  87 + public void setPinYinStr(String pinYinStr) {
  88 + this.pinYinStr = pinYinStr;
  89 + }
  90 +
  91 + public String getFormerName() {
  92 + return formerName;
  93 + }
  94 +
  95 + public void setFormerName(String formerName) {
  96 + this.formerName = formerName;
  97 + }
  98 +
  99 + public String getIdNo() {
  100 + return idNo;
  101 + }
  102 +
  103 + public void setIdNo(String idNo) {
  104 + this.idNo = idNo;
  105 + }
  106 +
  107 + public String getTelNo() {
  108 + return telNo;
  109 + }
  110 +
  111 + public void setTelNo(String telNo) {
  112 + this.telNo = telNo;
  113 + }
  114 +
  115 + public Date getBirthday() {
  116 + return birthday;
  117 + }
  118 +
  119 + public void setBirthday(Date birthday) {
  120 + this.birthday = birthday;
  121 + }
  122 +
  123 + public String getAddress() {
  124 + return address;
  125 + }
  126 +
  127 + public void setAddress(String address) {
  128 + this.address = address;
  129 + }
  130 +
  131 + public String getHouseholdAddress() {
  132 + return householdAddress;
  133 + }
  134 +
  135 + public void setHouseholdAddress(String householdAddress) {
  136 + this.householdAddress = householdAddress;
  137 + }
  138 +
  139 + public String getCommittee() {
  140 + return committee;
  141 + }
  142 +
  143 + public void setCommittee(String committee) {
  144 + this.committee = committee;
  145 + }
  146 +
  147 + public String getResidential() {
  148 + return residential;
  149 + }
  150 +
  151 + public void setResidential(String residential) {
  152 + this.residential = residential;
  153 + }
  154 +
  155 + public String getBuilding() {
  156 + return building;
  157 + }
  158 +
  159 + public void setBuilding(String building) {
  160 + this.building = building;
  161 + }
  162 +
  163 + public String getUnit() {
  164 + return unit;
  165 + }
  166 +
  167 + public void setUnit(String unit) {
  168 + this.unit = unit;
  169 + }
  170 +
  171 + public String getRoomNumber() {
  172 + return roomNumber;
  173 + }
  174 +
  175 + public void setRoomNumber(String roomNumber) {
  176 + this.roomNumber = roomNumber;
  177 + }
  178 +
  179 + public String getFixedPhones() {
  180 + return fixedPhones;
  181 + }
  182 +
  183 + public void setFixedPhones(String fixedPhones) {
  184 + this.fixedPhones = fixedPhones;
  185 + }
  186 +
  187 + public String getContactName() {
  188 + return contactName;
  189 + }
  190 +
  191 + public void setContactName(String contactName) {
  192 + this.contactName = contactName;
  193 + }
  194 +
  195 + public String getContactTelNo() {
  196 + return contactTelNo;
  197 + }
  198 +
  199 + public void setContactTelNo(String contactTelNo) {
  200 + this.contactTelNo = contactTelNo;
  201 + }
  202 +
  203 + public String getWorkUnit() {
  204 + return workUnit;
  205 + }
  206 +
  207 + public void setWorkUnit(String workUnit) {
  208 + this.workUnit = workUnit;
  209 + }
  210 +
  211 + public String getResidenceTypeCode() {
  212 + return residenceTypeCode;
  213 + }
  214 +
  215 + public void setResidenceTypeCode(String residenceTypeCode) {
  216 + this.residenceTypeCode = residenceTypeCode;
  217 + }
  218 +
  219 + public String getHouseholdTypeCode() {
  220 + return householdTypeCode;
  221 + }
  222 +
  223 + public void setHouseholdTypeCode(String householdTypeCode) {
  224 + this.householdTypeCode = householdTypeCode;
  225 + }
  226 +
  227 + public String getNationalityCode() {
  228 + return nationalityCode;
  229 + }
  230 +
  231 + public void setNationalityCode(String nationalityCode) {
  232 + this.nationalityCode = nationalityCode;
  233 + }
  234 +
  235 + public String getNationalityValue() {
  236 + return nationalityValue;
  237 + }
  238 +
  239 + public void setNationalityValue(String nationalityValue) {
  240 + this.nationalityValue = nationalityValue;
  241 + }
  242 +
  243 + public String getPersonInfoSno() {
  244 + return personInfoSno;
  245 + }
  246 +
  247 + public void setPersonInfoSno(String personInfoSno) {
  248 + this.personInfoSno = personInfoSno;
  249 + }
  250 +
  251 + public String getAboCode() {
  252 + return aboCode;
  253 + }
  254 +
  255 + public void setAboCode(String aboCode) {
  256 + this.aboCode = aboCode;
  257 + }
  258 +
  259 + public String getRhCode() {
  260 + return rhCode;
  261 + }
  262 +
  263 + public void setRhCode(String rhCode) {
  264 + this.rhCode = rhCode;
  265 + }
  266 +
  267 + public String getEducationCode() {
  268 + return educationCode;
  269 + }
  270 +
  271 + public void setEducationCode(String educationCode) {
  272 + this.educationCode = educationCode;
  273 + }
  274 +
  275 + public String getOccupationCode() {
  276 + return occupationCode;
  277 + }
  278 +
  279 + public void setOccupationCode(String occupationCode) {
  280 + this.occupationCode = occupationCode;
  281 + }
  282 +
  283 + public String getMarriageCode() {
  284 + return marriageCode;
  285 + }
  286 +
  287 + public void setMarriageCode(String marriageCode) {
  288 + this.marriageCode = marriageCode;
  289 + }
  290 +
  291 + public String getMedicalPayWay() {
  292 + return medicalPayWay;
  293 + }
  294 +
  295 + public void setMedicalPayWay(String medicalPayWay) {
  296 + this.medicalPayWay = medicalPayWay;
  297 + }
  298 +
  299 + public List<CdGwChoice> getRecordChoice() {
  300 + return recordChoice;
  301 + }
  302 +
  303 + public void setRecordChoice(List<CdGwChoice> recordChoice) {
  304 + this.recordChoice = recordChoice;
  305 + }
  306 +
  307 + public List<CdGwDisease> getPersonDisease() {
  308 + return personDisease;
  309 + }
  310 +
  311 + public void setPersonDisease(List<CdGwDisease> personDisease) {
  312 + this.personDisease = personDisease;
  313 + }
  314 +
  315 + public List<CdGwPast> getPersonPastHistory() {
  316 + return personPastHistory;
  317 + }
  318 +
  319 + public void setPersonPastHistory(List<CdGwPast> personPastHistory) {
  320 + this.personPastHistory = personPastHistory;
  321 + }
  322 +
  323 + public String getGeneticDiseaseHistoryCode() {
  324 + return geneticDiseaseHistoryCode;
  325 + }
  326 +
  327 + public void setGeneticDiseaseHistoryCode(String geneticDiseaseHistoryCode) {
  328 + this.geneticDiseaseHistoryCode = geneticDiseaseHistoryCode;
  329 + }
  330 +
  331 + public String getGeneticDiseaseHistoryName() {
  332 + return geneticDiseaseHistoryName;
  333 + }
  334 +
  335 + public void setGeneticDiseaseHistoryName(String geneticDiseaseHistoryName) {
  336 + this.geneticDiseaseHistoryName = geneticDiseaseHistoryName;
  337 + }
  338 +
  339 + public String getIsDisabilityEyesight() {
  340 + return isDisabilityEyesight;
  341 + }
  342 +
  343 + public void setIsDisabilityEyesight(String isDisabilityEyesight) {
  344 + this.isDisabilityEyesight = isDisabilityEyesight;
  345 + }
  346 +
  347 + public String getIsDisabilityHearing() {
  348 + return isDisabilityHearing;
  349 + }
  350 +
  351 + public void setIsDisabilityHearing(String isDisabilityHearing) {
  352 + this.isDisabilityHearing = isDisabilityHearing;
  353 + }
  354 +
  355 + public String getIsDisabilityLanguage() {
  356 + return isDisabilityLanguage;
  357 + }
  358 +
  359 + public void setIsDisabilityLanguage(String isDisabilityLanguage) {
  360 + this.isDisabilityLanguage = isDisabilityLanguage;
  361 + }
  362 +
  363 + public String getIsDisabilityLimbs() {
  364 + return isDisabilityLimbs;
  365 + }
  366 +
  367 + public void setIsDisabilityLimbs(String isDisabilityLimbs) {
  368 + this.isDisabilityLimbs = isDisabilityLimbs;
  369 + }
  370 +
  371 + public String getIsDisabilityBrain() {
  372 + return isDisabilityBrain;
  373 + }
  374 +
  375 + public void setIsDisabilityBrain(String isDisabilityBrain) {
  376 + this.isDisabilityBrain = isDisabilityBrain;
  377 + }
  378 +
  379 + public String getIsDisabilityMind() {
  380 + return isDisabilityMind;
  381 + }
  382 +
  383 + public void setIsDisabilityMind(String isDisabilityMind) {
  384 + this.isDisabilityMind = isDisabilityMind;
  385 + }
  386 +
  387 + public String getKitchenExhaustCode() {
  388 + return kitchenExhaustCode;
  389 + }
  390 +
  391 + public void setKitchenExhaustCode(String kitchenExhaustCode) {
  392 + this.kitchenExhaustCode = kitchenExhaustCode;
  393 + }
  394 +
  395 + public String getToiletCode() {
  396 + return toiletCode;
  397 + }
  398 +
  399 + public void setToiletCode(String toiletCode) {
  400 + this.toiletCode = toiletCode;
  401 + }
  402 +
  403 + public String getLivestockFenceCode() {
  404 + return livestockFenceCode;
  405 + }
  406 +
  407 + public void setLivestockFenceCode(String livestockFenceCode) {
  408 + this.livestockFenceCode = livestockFenceCode;
  409 + }
  410 +
  411 + public String getCreateOrgId() {
  412 + return createOrgId;
  413 + }
  414 +
  415 + public void setCreateOrgId(String createOrgId) {
  416 + this.createOrgId = createOrgId;
  417 + }
  418 +
  419 + public String getOrgName() {
  420 + return orgName;
  421 + }
  422 +
  423 + public void setOrgName(String orgName) {
  424 + this.orgName = orgName;
  425 + }
  426 +
  427 + public String getCreatorId() {
  428 + return creatorId;
  429 + }
  430 +
  431 + public void setCreatorId(String creatorId) {
  432 + this.creatorId = creatorId;
  433 + }
  434 +
  435 + public String getCreator() {
  436 + return creator;
  437 + }
  438 +
  439 + public void setCreator(String creator) {
  440 + this.creator = creator;
  441 + }
  442 +
  443 + public String getModifiedOrgId() {
  444 + return modifiedOrgId;
  445 + }
  446 +
  447 + public void setModifiedOrgId(String modifiedOrgId) {
  448 + this.modifiedOrgId = modifiedOrgId;
  449 + }
  450 +
  451 + public String getModifiedOrgName() {
  452 + return modifiedOrgName;
  453 + }
  454 +
  455 + public void setModifiedOrgName(String modifiedOrgName) {
  456 + this.modifiedOrgName = modifiedOrgName;
  457 + }
  458 +
  459 + public String getModifierId() {
  460 + return modifierId;
  461 + }
  462 +
  463 + public void setModifierId(String modifierId) {
  464 + this.modifierId = modifierId;
  465 + }
  466 +
  467 + public String getModifier() {
  468 + return modifier;
  469 + }
  470 +
  471 + public void setModifier(String modifier) {
  472 + this.modifier = modifier;
  473 + }
  474 +
  475 + public String getRemarks() {
  476 + return remarks;
  477 + }
  478 +
  479 + public void setRemarks(String remarks) {
  480 + this.remarks = remarks;
  481 + }
  482 +
  483 + public String getIsAppCreate() {
  484 + return isAppCreate;
  485 + }
  486 +
  487 + public void setIsAppCreate(String isAppCreate) {
  488 + this.isAppCreate = isAppCreate;
  489 + }
43 490 }