Commit 861389c1565ad28a8f0fb86be72395e76eab45eb

Authored by shiyang
1 parent 68ac3f637e
Exists in master and in 1 other branch dev

PC 检查报告 新增/修改 查询

Showing 7 changed files with 1263 additions and 1 deletions

talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/LymsInspectionReportController.java View file @ 861389c
  1 +package com.lyms.talkonlineweb.controller;
  2 +
  3 +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  4 +import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  5 +import com.lyms.talkonlineweb.annotation.TokenRequired;
  6 +import com.lyms.talkonlineweb.domain.LymsInspectionReport;
  7 +import com.lyms.talkonlineweb.domain.LymsPatient;
  8 +import com.lyms.talkonlineweb.result.BaseResponse;
  9 +import com.lyms.talkonlineweb.service.LymsInspectionReportService;
  10 +import com.lyms.talkonlineweb.service.LymsPatientService;
  11 +import com.lyms.talkonlineweb.util.StringUtil;
  12 +import lombok.extern.log4j.Log4j2;
  13 +import org.springframework.beans.factory.annotation.Autowired;
  14 +import org.springframework.util.DigestUtils;
  15 +import org.springframework.web.bind.annotation.*;
  16 +
  17 +import java.util.List;
  18 +
  19 +/**
  20 + * 检查报告
  21 + */
  22 +@RestController
  23 +@RequestMapping("insr")
  24 +@Log4j2
  25 +public class LymsInspectionReportController {
  26 + @Autowired
  27 + private LymsInspectionReportService lymsInspectionReportService;//检查报告
  28 +
  29 + /**
  30 + * PC 检查报告 新增/修改
  31 + *
  32 + * @param inspectionReport
  33 + * @return
  34 + */
  35 + @PostMapping("addOrUpdateInspectionReport")
  36 + @TokenRequired
  37 + public BaseResponse addOrUpdateInspectionReport(@RequestBody LymsInspectionReport inspectionReport) {
  38 + BaseResponse baseResponse = new BaseResponse();
  39 + try {
  40 + boolean b = lymsInspectionReportService.saveOrUpdate(inspectionReport);
  41 +
  42 + baseResponse.setErrorcode(b?0:1);
  43 + baseResponse.setErrormsg(b?(null==inspectionReport.getId()?"注册成功!":"修改成功"):(null==inspectionReport.getId()?"注册失败!":"修改失败"));
  44 + } catch (Exception e) {
  45 + baseResponse.setErrorcode(1);
  46 + baseResponse.setErrormsg("系统异常");
  47 + e.printStackTrace();
  48 + }
  49 + return baseResponse;
  50 + }
  51 + /**
  52 + * PC 检查报告 查询病例下的检查报告
  53 + *
  54 + * @param pcid
  55 + * @return
  56 + */
  57 + @GetMapping("queryInspectionReport")
  58 + @TokenRequired
  59 + public BaseResponse queryInspectionReport(Integer pcid) {
  60 + BaseResponse baseResponse = new BaseResponse();
  61 + try {
  62 + LymsInspectionReport inspectionReport = lymsInspectionReportService.getById(pcid);
  63 + baseResponse.setErrorcode(0);
  64 + baseResponse.setErrormsg("成功");
  65 + baseResponse.setObject(inspectionReport);
  66 + } catch (Exception e) {
  67 + baseResponse.setErrorcode(1);
  68 + baseResponse.setErrormsg("系统异常");
  69 + e.printStackTrace();
  70 + }
  71 + return baseResponse;
  72 + }
  73 +}
talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/PatientController.java View file @ 861389c
... ... @@ -1247,7 +1247,7 @@
1247 1247 }
1248 1248 boolean f = lymsPatientService.saveOrUpdate(patient);
1249 1249 baseResponse.setErrorcode(f?0:1);
1250   - baseResponse.setErrormsg(f?(null==patient.getId()?"注册成功!":"修改成功"):(null==patient.getId()?"注册成功!":"修改成功"));
  1250 + baseResponse.setErrormsg(f?(null==patient.getId()?"注册成功!":"修改成功"):(null==patient.getId()?"注册失败!":"修改失败"));
1251 1251 } catch (Exception e) {
1252 1252 baseResponse.setErrorcode(1);
1253 1253 baseResponse.setErrormsg("系统异常");
... ... @@ -1311,6 +1311,8 @@
1311 1311 Page<LymsPatient> page=new Page<>(current,size);
1312 1312 Page<LymsPatient> lymsPatientPage=lymsPatientService.page(page, query.orderByDesc("createdtime"));
1313 1313 baseResponse.setObject(lymsPatientPage);
  1314 + baseResponse.setErrorcode(0);
  1315 + baseResponse.setErrormsg("成功");
1314 1316 } catch (Exception e) {
1315 1317 baseResponse.setErrorcode(1);
1316 1318 baseResponse.setErrormsg("系统异常");
talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsInspectionReport.java View file @ 861389c
  1 +package com.lyms.talkonlineweb.domain;
  2 +
  3 +import com.baomidou.mybatisplus.annotation.IdType;
  4 +import com.baomidou.mybatisplus.annotation.TableField;
  5 +import com.baomidou.mybatisplus.annotation.TableId;
  6 +import com.baomidou.mybatisplus.annotation.TableName;
  7 +import java.io.Serializable;
  8 +import java.util.Date;
  9 +import lombok.Data;
  10 +
  11 +/**
  12 + * 检查报告
  13 + * @TableName lyms_inspection_report
  14 + */
  15 +@TableName(value ="lyms_inspection_report")
  16 +@Data
  17 +public class LymsInspectionReport implements Serializable {
  18 + /**
  19 + * 主键id
  20 + */
  21 + @TableId(value = "id", type = IdType.AUTO)
  22 + private Integer id;
  23 +
  24 + /**
  25 + * 关联病例id
  26 + */
  27 + @TableField(value = "pcid")
  28 + private Integer pcid;
  29 +
  30 + /**
  31 + * 检查医院
  32 + */
  33 + @TableField(value = "hid")
  34 + private Integer hid;
  35 +
  36 + /**
  37 + * 创建时间
  38 + */
  39 + @TableField(value = "createdtime")
  40 + private Date createdtime;
  41 +
  42 + /**
  43 + * 修改时间
  44 + */
  45 + @TableField(value = "updatedtime")
  46 + private Date updatedtime;
  47 +
  48 + /**
  49 + * 检查时间
  50 + */
  51 + @TableField(value = "checkdate")
  52 + private Date checkdate;
  53 +
  54 + /**
  55 + * 就诊卡号
  56 + */
  57 + @TableField(value = "outpatients_card")
  58 + private String outpatientsCard;
  59 +
  60 + /**
  61 + * 血压:高压
  62 + */
  63 + @TableField(value = "gaoya")
  64 + private String gaoya;
  65 +
  66 + /**
  67 + * 血压:低压
  68 + */
  69 + @TableField(value = "diya")
  70 + private String diya;
  71 +
  72 + /**
  73 + * 体重
  74 + */
  75 + @TableField(value = "weight")
  76 + private String weight;
  77 +
  78 + /**
  79 + * 身高
  80 + */
  81 + @TableField(value = "height")
  82 + private String height;
  83 +
  84 + /**
  85 + * 血糖
  86 + */
  87 + @TableField(value = "blood")
  88 + private String blood;
  89 +
  90 + /**
  91 + * 脉搏
  92 + */
  93 + @TableField(value = "pulse")
  94 + private String pulse;
  95 +
  96 + /**
  97 + * 体温
  98 + */
  99 + @TableField(value = "animal_heat")
  100 + private String animalHeat;
  101 +
  102 + /**
  103 + * 促卵泡生产激素
  104 + */
  105 + @TableField(value = "clpscjs")
  106 + private String clpscjs;
  107 +
  108 + /**
  109 + * 促黄体生成素
  110 + */
  111 + @TableField(value = "chtscs")
  112 + private String chtscs;
  113 +
  114 + /**
  115 + * 雌二醇
  116 + */
  117 + @TableField(value = "cec")
  118 + private String cec;
  119 +
  120 + /**
  121 + * 垂体泌乳素
  122 + */
  123 + @TableField(value = "ctmrs")
  124 + private String ctmrs;
  125 +
  126 + /**
  127 + * 孕酮
  128 + */
  129 + @TableField(value = "yunt")
  130 + private String yunt;
  131 +
  132 + /**
  133 + * 睾酮
  134 + */
  135 + @TableField(value = "gaot")
  136 + private String gaot;
  137 +
  138 + /**
  139 + * PH-白带
  140 + */
  141 + @TableField(value = "phbd")
  142 + private String phbd;
  143 +
  144 + /**
  145 + * 清洁度-白带
  146 + */
  147 + @TableField(value = "qjdbd")
  148 + private String qjdbd;
  149 +
  150 + /**
  151 + * 杆菌-白带
  152 + */
  153 + @TableField(value = "gjbd")
  154 + private String gjbd;
  155 +
  156 + /**
  157 + * 红细胞-白带
  158 + */
  159 + @TableField(value = "hxbbd")
  160 + private String hxbbd;
  161 +
  162 + /**
  163 + * 上皮细胞-白带
  164 + */
  165 + @TableField(value = "spxbbd")
  166 + private String spxbbd;
  167 +
  168 + /**
  169 + * 线索细胞-白带
  170 + */
  171 + @TableField(value = "xsxbbd")
  172 + private String xsxbbd;
  173 +
  174 + /**
  175 + * 霉菌-白带
  176 + */
  177 + @TableField(value = "mjbd")
  178 + private String mjbd;
  179 +
  180 + /**
  181 + * 滴虫-白带
  182 + */
  183 + @TableField(value = "dcbd")
  184 + private String dcbd;
  185 +
  186 + /**
  187 + * 胺实验-白带
  188 + */
  189 + @TableField(value = "asybd")
  190 + private String asybd;
  191 +
  192 + /**
  193 + * 白细胞-白带
  194 + */
  195 + @TableField(value = "bxbbd")
  196 + private String bxbbd;
  197 +
  198 + /**
  199 + * 宫颈细胞学检查
  200 + */
  201 + @TableField(value = "gjxbxjc")
  202 + private String gjxbxjc;
  203 +
  204 + /**
  205 + * 宫颈人乳头瘤病毒检查
  206 + */
  207 + @TableField(value = "gjrrtlbdjc")
  208 + private String gjrrtlbdjc;
  209 +
  210 + /**
  211 + * 乳腺癌筛查
  212 + */
  213 + @TableField(value = "rxasc")
  214 + private String rxasc;
  215 +
  216 + /**
  217 + * 乳腺彩超(请输
  218 +入彩超意见)
  219 + */
  220 + @TableField(value = "rxcc")
  221 + private String rxcc;
  222 +
  223 + /**
  224 + * 乳腺钼靶
  225 + */
  226 + @TableField(value = "rxmb")
  227 + private String rxmb;
  228 +
  229 + /**
  230 + * B超或阴超
  231 +(请输入B
  232 +超意见
  233 + */
  234 + @TableField(value = "bchyc")
  235 + private String bchyc;
  236 +
  237 + /**
  238 + * 血清HCG水平
  239 +(0-5mIU/ml
  240 +表明未孕)
  241 + */
  242 + @TableField(value = "xqhcgsp")
  243 + private String xqhcgsp;
  244 +
  245 + /**
  246 + * 白细胞
  247 + */
  248 + @TableField(value = "bxb")
  249 + private String bxb;
  250 +
  251 + /**
  252 + * 红细胞计数
  253 + */
  254 + @TableField(value = "hxbjs")
  255 + private String hxbjs;
  256 +
  257 + /**
  258 + * 血红蛋白
  259 + */
  260 + @TableField(value = "xhdb")
  261 + private String xhdb;
  262 +
  263 + /**
  264 + * 血细胞比容
  265 + */
  266 + @TableField(value = "xxbbr")
  267 + private String xxbbr;
  268 +
  269 + /**
  270 + * 平均红细胞血红蛋白含量
  271 + */
  272 + @TableField(value = "avghxbxhdbhl")
  273 + private String avghxbxhdbhl;
  274 +
  275 + /**
  276 + * 平均红细胞血红蛋白浓度
  277 + */
  278 + @TableField(value = "avghxbxhdbnd")
  279 + private String avghxbxhdbnd;
  280 +
  281 + /**
  282 + * 红细胞分布宽度
  283 + */
  284 + @TableField(value = "hxbfbkd")
  285 + private String hxbfbkd;
  286 +
  287 + /**
  288 + * 血小板计数
  289 + */
  290 + @TableField(value = "xxbjs")
  291 + private String xxbjs;
  292 +
  293 + /**
  294 + * 平均血小板体积
  295 + */
  296 + @TableField(value = "avgxxbtj")
  297 + private String avgxxbtj;
  298 +
  299 + /**
  300 + * 血小板分布宽度
  301 + */
  302 + @TableField(value = "xxbfbkd")
  303 + private String xxbfbkd;
  304 +
  305 + /**
  306 + * 血小板压积
  307 + */
  308 + @TableField(value = "xxbjy")
  309 + private String xxbjy;
  310 +
  311 + /**
  312 + * 淋巴细胞百分比
  313 + */
  314 + @TableField(value = "lbxbbfb")
  315 + private String lbxbbfb;
  316 +
  317 + /**
  318 + * 中性粒细胞百分比
  319 + */
  320 + @TableField(value = "zxlxbbfb")
  321 + private String zxlxbbfb;
  322 +
  323 + /**
  324 + * 淋巴细胞值
  325 + */
  326 + @TableField(value = "lbxbz")
  327 + private String lbxbz;
  328 +
  329 + /**
  330 + * 中性粒细胞值
  331 + */
  332 + @TableField(value = "zxlxbz")
  333 + private String zxlxbz;
  334 +
  335 + /**
  336 + * 平均红细胞体积
  337 + */
  338 + @TableField(value = "avghxbtj")
  339 + private String avghxbtj;
  340 +
  341 + /**
  342 + * 酸碱度
  343 + */
  344 + @TableField(value = "sjd")
  345 + private String sjd;
  346 +
  347 + /**
  348 + * 尿糖
  349 + */
  350 + @TableField(value = "niaot")
  351 + private String niaot;
  352 +
  353 + /**
  354 + * 酮体
  355 + */
  356 + @TableField(value = "tongt")
  357 + private String tongt;
  358 +
  359 + /**
  360 + * 尿胆原
  361 + */
  362 + @TableField(value = "ndy")
  363 + private String ndy;
  364 +
  365 + /**
  366 + * 胆红素
  367 + */
  368 + @TableField(value = "dhs")
  369 + private String dhs;
  370 +
  371 + /**
  372 + * 尿蛋白
  373 + */
  374 + @TableField(value = "ndb")
  375 + private String ndb;
  376 +
  377 + /**
  378 + * 谷丙转氨酶
  379 + */
  380 + @TableField(value = "gbzam")
  381 + private String gbzam;
  382 +
  383 + /**
  384 + * 谷草转氨酶
  385 + */
  386 + @TableField(value = "gczam")
  387 + private String gczam;
  388 +
  389 + /**
  390 + * 碱性磷酸酶
  391 + */
  392 + @TableField(value = "jxlsm")
  393 + private String jxlsm;
  394 +
  395 + /**
  396 + * 谷氨酰转肽酶
  397 + */
  398 + @TableField(value = "gbxztm")
  399 + private String gbxztm;
  400 +
  401 + /**
  402 + * 总胆红素
  403 + */
  404 + @TableField(value = "zdhs")
  405 + private String zdhs;
  406 +
  407 + /**
  408 + * 直接胆红素
  409 + */
  410 + @TableField(value = "zjdhz")
  411 + private String zjdhz;
  412 +
  413 + /**
  414 + * 间接胆红素
  415 + */
  416 + @TableField(value = "jjdhs")
  417 + private String jjdhs;
  418 +
  419 + /**
  420 + * 总蛋白
  421 + */
  422 + @TableField(value = "zdb")
  423 + private String zdb;
  424 +
  425 + /**
  426 + * 白蛋白
  427 + */
  428 + @TableField(value = "bdb")
  429 + private String bdb;
  430 +
  431 + /**
  432 + * 球蛋白
  433 + */
  434 + @TableField(value = "qdb")
  435 + private String qdb;
  436 +
  437 + /**
  438 + * 白球比
  439 + */
  440 + @TableField(value = "bqb")
  441 + private String bqb;
  442 +
  443 + /**
  444 + * 谷草谷丙比值
  445 + */
  446 + @TableField(value = "gcgbbz")
  447 + private String gcgbbz;
  448 +
  449 + /**
  450 + * 肌酐
  451 + */
  452 + @TableField(value = "jigan")
  453 + private String jigan;
  454 +
  455 + /**
  456 + * 尿素氨
  457 + */
  458 + @TableField(value = "nsa")
  459 + private String nsa;
  460 +
  461 + /**
  462 + * 血清胱抑素C测定
  463 + */
  464 + @TableField(value = "xqgysccd")
  465 + private String xqgysccd;
  466 +
  467 + /**
  468 + * 钾
  469 + */
  470 + @TableField(value = "jia")
  471 + private String jia;
  472 +
  473 + /**
  474 + * 钠
  475 + */
  476 + @TableField(value = "na")
  477 + private String na;
  478 +
  479 + /**
  480 + * 氯
  481 + */
  482 + @TableField(value = "lv")
  483 + private String lv;
  484 +
  485 + /**
  486 + * 钙
  487 + */
  488 + @TableField(value = "gai")
  489 + private String gai;
  490 +
  491 + /**
  492 + * 葡萄糖
  493 + */
  494 + @TableField(value = "glucose")
  495 + private String glucose;
  496 +
  497 + /**
  498 + * 尿酸
  499 + */
  500 + @TableField(value = "niaos")
  501 + private String niaos;
  502 +
  503 + /**
  504 + * 内生肌酐清除率
  505 + */
  506 + @TableField(value = "nsjgqcl")
  507 + private String nsjgqcl;
  508 +
  509 + /**
  510 + * 肾小球滤过率测定
  511 + */
  512 + @TableField(value = "sxqlglcd")
  513 + private String sxqlglcd;
  514 +
  515 + /**
  516 + * β2-微球蛋白
  517 + */
  518 + @TableField(value = "wqdb")
  519 + private String wqdb;
  520 +
  521 + /**
  522 + * 总三碘甲状腺原氨酸
  523 + */
  524 + @TableField(value = "zsdjzxyas")
  525 + private String zsdjzxyas;
  526 +
  527 + /**
  528 + * 总甲状腺素
  529 + */
  530 + @TableField(value = "zjzxs")
  531 + private String zjzxs;
  532 +
  533 + /**
  534 + * 游离甲状腺素
  535 + */
  536 + @TableField(value = "yljzxs")
  537 + private String yljzxs;
  538 +
  539 + /**
  540 + * 促甲状腺激素
  541 + */
  542 + @TableField(value = "cjzxjs")
  543 + private String cjzxjs;
  544 +
  545 + /**
  546 + * 游离三碘伏甲状腺原氨酸
  547 + */
  548 + @TableField(value = "ylsdfjzxyas")
  549 + private String ylsdfjzxyas;
  550 +
  551 + /**
  552 + * 总胆固醇
  553 + */
  554 + @TableField(value = "zdgc")
  555 + private String zdgc;
  556 +
  557 + /**
  558 + * 甘油三酯
  559 + */
  560 + @TableField(value = "gysz")
  561 + private String gysz;
  562 +
  563 + /**
  564 + * 低密度脂蛋白
  565 + */
  566 + @TableField(value = "dmdzdb")
  567 + private String dmdzdb;
  568 +
  569 + /**
  570 + * 载脂蛋白A1
  571 + */
  572 + @TableField(value = "zzdba")
  573 + private String zzdba;
  574 +
  575 + /**
  576 + * 高密度脂蛋白
  577 + */
  578 + @TableField(value = "gmdzdb")
  579 + private String gmdzdb;
  580 +
  581 + /**
  582 + * 载脂蛋白B
  583 + */
  584 + @TableField(value = "zzdbb")
  585 + private String zzdbb;
  586 +
  587 + /**
  588 + * 癌抗原125
  589 + */
  590 + @TableField(value = "aky")
  591 + private String aky;
  592 +
  593 + /**
  594 + * 人附睾蛋白4
  595 + */
  596 + @TableField(value = "rfgdb")
  597 + private String rfgdb;
  598 +
  599 + /**
  600 + * 糖链抗原19-9
  601 + */
  602 + @TableField(value = "tlky")
  603 + private String tlky;
  604 +
  605 + /**
  606 + * 甲胎蛋白
  607 + */
  608 + @TableField(value = "jtdb")
  609 + private String jtdb;
  610 +
  611 + /**
  612 + * 癌胚抗原
  613 + */
  614 + @TableField(value = "apky")
  615 + private String apky;
  616 +
  617 + /**
  618 + * 鳞状细胞癌抗原
  619 + */
  620 + @TableField(value = "lzxbaky")
  621 + private String lzxbaky;
  622 +
  623 + /**
  624 + * 沙眼衣原体
  625 + */
  626 + @TableField(value = "syyyt")
  627 + private String syyyt;
  628 +
  629 + /**
  630 + * 解脲支原体
  631 + */
  632 + @TableField(value = "jnzyt")
  633 + private String jnzyt;
  634 +
  635 + /**
  636 + * 人型支原体
  637 + */
  638 + @TableField(value = "rxzyt")
  639 + private String rxzyt;
  640 +
  641 + @TableField(exist = false)
  642 + private static final long serialVersionUID = 1L;
  643 +
  644 + @Override
  645 + public boolean equals(Object that) {
  646 + if (this == that) {
  647 + return true;
  648 + }
  649 + if (that == null) {
  650 + return false;
  651 + }
  652 + if (getClass() != that.getClass()) {
  653 + return false;
  654 + }
  655 + LymsInspectionReport other = (LymsInspectionReport) that;
  656 + return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
  657 + && (this.getPcid() == null ? other.getPcid() == null : this.getPcid().equals(other.getPcid()))
  658 + && (this.getHid() == null ? other.getHid() == null : this.getHid().equals(other.getHid()))
  659 + && (this.getCreatedtime() == null ? other.getCreatedtime() == null : this.getCreatedtime().equals(other.getCreatedtime()))
  660 + && (this.getUpdatedtime() == null ? other.getUpdatedtime() == null : this.getUpdatedtime().equals(other.getUpdatedtime()))
  661 + && (this.getCheckdate() == null ? other.getCheckdate() == null : this.getCheckdate().equals(other.getCheckdate()))
  662 + && (this.getOutpatientsCard() == null ? other.getOutpatientsCard() == null : this.getOutpatientsCard().equals(other.getOutpatientsCard()))
  663 + && (this.getGaoya() == null ? other.getGaoya() == null : this.getGaoya().equals(other.getGaoya()))
  664 + && (this.getDiya() == null ? other.getDiya() == null : this.getDiya().equals(other.getDiya()))
  665 + && (this.getWeight() == null ? other.getWeight() == null : this.getWeight().equals(other.getWeight()))
  666 + && (this.getHeight() == null ? other.getHeight() == null : this.getHeight().equals(other.getHeight()))
  667 + && (this.getBlood() == null ? other.getBlood() == null : this.getBlood().equals(other.getBlood()))
  668 + && (this.getPulse() == null ? other.getPulse() == null : this.getPulse().equals(other.getPulse()))
  669 + && (this.getAnimalHeat() == null ? other.getAnimalHeat() == null : this.getAnimalHeat().equals(other.getAnimalHeat()))
  670 + && (this.getClpscjs() == null ? other.getClpscjs() == null : this.getClpscjs().equals(other.getClpscjs()))
  671 + && (this.getChtscs() == null ? other.getChtscs() == null : this.getChtscs().equals(other.getChtscs()))
  672 + && (this.getCec() == null ? other.getCec() == null : this.getCec().equals(other.getCec()))
  673 + && (this.getCtmrs() == null ? other.getCtmrs() == null : this.getCtmrs().equals(other.getCtmrs()))
  674 + && (this.getYunt() == null ? other.getYunt() == null : this.getYunt().equals(other.getYunt()))
  675 + && (this.getGaot() == null ? other.getGaot() == null : this.getGaot().equals(other.getGaot()))
  676 + && (this.getPhbd() == null ? other.getPhbd() == null : this.getPhbd().equals(other.getPhbd()))
  677 + && (this.getQjdbd() == null ? other.getQjdbd() == null : this.getQjdbd().equals(other.getQjdbd()))
  678 + && (this.getGjbd() == null ? other.getGjbd() == null : this.getGjbd().equals(other.getGjbd()))
  679 + && (this.getHxbbd() == null ? other.getHxbbd() == null : this.getHxbbd().equals(other.getHxbbd()))
  680 + && (this.getSpxbbd() == null ? other.getSpxbbd() == null : this.getSpxbbd().equals(other.getSpxbbd()))
  681 + && (this.getXsxbbd() == null ? other.getXsxbbd() == null : this.getXsxbbd().equals(other.getXsxbbd()))
  682 + && (this.getMjbd() == null ? other.getMjbd() == null : this.getMjbd().equals(other.getMjbd()))
  683 + && (this.getDcbd() == null ? other.getDcbd() == null : this.getDcbd().equals(other.getDcbd()))
  684 + && (this.getAsybd() == null ? other.getAsybd() == null : this.getAsybd().equals(other.getAsybd()))
  685 + && (this.getBxbbd() == null ? other.getBxbbd() == null : this.getBxbbd().equals(other.getBxbbd()))
  686 + && (this.getGjxbxjc() == null ? other.getGjxbxjc() == null : this.getGjxbxjc().equals(other.getGjxbxjc()))
  687 + && (this.getGjrrtlbdjc() == null ? other.getGjrrtlbdjc() == null : this.getGjrrtlbdjc().equals(other.getGjrrtlbdjc()))
  688 + && (this.getRxasc() == null ? other.getRxasc() == null : this.getRxasc().equals(other.getRxasc()))
  689 + && (this.getRxcc() == null ? other.getRxcc() == null : this.getRxcc().equals(other.getRxcc()))
  690 + && (this.getRxmb() == null ? other.getRxmb() == null : this.getRxmb().equals(other.getRxmb()))
  691 + && (this.getBchyc() == null ? other.getBchyc() == null : this.getBchyc().equals(other.getBchyc()))
  692 + && (this.getXqhcgsp() == null ? other.getXqhcgsp() == null : this.getXqhcgsp().equals(other.getXqhcgsp()))
  693 + && (this.getBxb() == null ? other.getBxb() == null : this.getBxb().equals(other.getBxb()))
  694 + && (this.getHxbjs() == null ? other.getHxbjs() == null : this.getHxbjs().equals(other.getHxbjs()))
  695 + && (this.getXhdb() == null ? other.getXhdb() == null : this.getXhdb().equals(other.getXhdb()))
  696 + && (this.getXxbbr() == null ? other.getXxbbr() == null : this.getXxbbr().equals(other.getXxbbr()))
  697 + && (this.getAvghxbxhdbhl() == null ? other.getAvghxbxhdbhl() == null : this.getAvghxbxhdbhl().equals(other.getAvghxbxhdbhl()))
  698 + && (this.getAvghxbxhdbnd() == null ? other.getAvghxbxhdbnd() == null : this.getAvghxbxhdbnd().equals(other.getAvghxbxhdbnd()))
  699 + && (this.getHxbfbkd() == null ? other.getHxbfbkd() == null : this.getHxbfbkd().equals(other.getHxbfbkd()))
  700 + && (this.getXxbjs() == null ? other.getXxbjs() == null : this.getXxbjs().equals(other.getXxbjs()))
  701 + && (this.getAvgxxbtj() == null ? other.getAvgxxbtj() == null : this.getAvgxxbtj().equals(other.getAvgxxbtj()))
  702 + && (this.getXxbfbkd() == null ? other.getXxbfbkd() == null : this.getXxbfbkd().equals(other.getXxbfbkd()))
  703 + && (this.getXxbjy() == null ? other.getXxbjy() == null : this.getXxbjy().equals(other.getXxbjy()))
  704 + && (this.getLbxbbfb() == null ? other.getLbxbbfb() == null : this.getLbxbbfb().equals(other.getLbxbbfb()))
  705 + && (this.getZxlxbbfb() == null ? other.getZxlxbbfb() == null : this.getZxlxbbfb().equals(other.getZxlxbbfb()))
  706 + && (this.getLbxbz() == null ? other.getLbxbz() == null : this.getLbxbz().equals(other.getLbxbz()))
  707 + && (this.getZxlxbz() == null ? other.getZxlxbz() == null : this.getZxlxbz().equals(other.getZxlxbz()))
  708 + && (this.getAvghxbtj() == null ? other.getAvghxbtj() == null : this.getAvghxbtj().equals(other.getAvghxbtj()))
  709 + && (this.getSjd() == null ? other.getSjd() == null : this.getSjd().equals(other.getSjd()))
  710 + && (this.getNiaot() == null ? other.getNiaot() == null : this.getNiaot().equals(other.getNiaot()))
  711 + && (this.getTongt() == null ? other.getTongt() == null : this.getTongt().equals(other.getTongt()))
  712 + && (this.getNdy() == null ? other.getNdy() == null : this.getNdy().equals(other.getNdy()))
  713 + && (this.getDhs() == null ? other.getDhs() == null : this.getDhs().equals(other.getDhs()))
  714 + && (this.getNdb() == null ? other.getNdb() == null : this.getNdb().equals(other.getNdb()))
  715 + && (this.getGbzam() == null ? other.getGbzam() == null : this.getGbzam().equals(other.getGbzam()))
  716 + && (this.getGczam() == null ? other.getGczam() == null : this.getGczam().equals(other.getGczam()))
  717 + && (this.getJxlsm() == null ? other.getJxlsm() == null : this.getJxlsm().equals(other.getJxlsm()))
  718 + && (this.getGbxztm() == null ? other.getGbxztm() == null : this.getGbxztm().equals(other.getGbxztm()))
  719 + && (this.getZdhs() == null ? other.getZdhs() == null : this.getZdhs().equals(other.getZdhs()))
  720 + && (this.getZjdhz() == null ? other.getZjdhz() == null : this.getZjdhz().equals(other.getZjdhz()))
  721 + && (this.getJjdhs() == null ? other.getJjdhs() == null : this.getJjdhs().equals(other.getJjdhs()))
  722 + && (this.getZdb() == null ? other.getZdb() == null : this.getZdb().equals(other.getZdb()))
  723 + && (this.getBdb() == null ? other.getBdb() == null : this.getBdb().equals(other.getBdb()))
  724 + && (this.getQdb() == null ? other.getQdb() == null : this.getQdb().equals(other.getQdb()))
  725 + && (this.getBqb() == null ? other.getBqb() == null : this.getBqb().equals(other.getBqb()))
  726 + && (this.getGcgbbz() == null ? other.getGcgbbz() == null : this.getGcgbbz().equals(other.getGcgbbz()))
  727 + && (this.getJigan() == null ? other.getJigan() == null : this.getJigan().equals(other.getJigan()))
  728 + && (this.getNsa() == null ? other.getNsa() == null : this.getNsa().equals(other.getNsa()))
  729 + && (this.getXqgysccd() == null ? other.getXqgysccd() == null : this.getXqgysccd().equals(other.getXqgysccd()))
  730 + && (this.getJia() == null ? other.getJia() == null : this.getJia().equals(other.getJia()))
  731 + && (this.getNa() == null ? other.getNa() == null : this.getNa().equals(other.getNa()))
  732 + && (this.getLv() == null ? other.getLv() == null : this.getLv().equals(other.getLv()))
  733 + && (this.getGai() == null ? other.getGai() == null : this.getGai().equals(other.getGai()))
  734 + && (this.getGlucose() == null ? other.getGlucose() == null : this.getGlucose().equals(other.getGlucose()))
  735 + && (this.getNiaos() == null ? other.getNiaos() == null : this.getNiaos().equals(other.getNiaos()))
  736 + && (this.getNsjgqcl() == null ? other.getNsjgqcl() == null : this.getNsjgqcl().equals(other.getNsjgqcl()))
  737 + && (this.getSxqlglcd() == null ? other.getSxqlglcd() == null : this.getSxqlglcd().equals(other.getSxqlglcd()))
  738 + && (this.getWqdb() == null ? other.getWqdb() == null : this.getWqdb().equals(other.getWqdb()))
  739 + && (this.getZsdjzxyas() == null ? other.getZsdjzxyas() == null : this.getZsdjzxyas().equals(other.getZsdjzxyas()))
  740 + && (this.getZjzxs() == null ? other.getZjzxs() == null : this.getZjzxs().equals(other.getZjzxs()))
  741 + && (this.getYljzxs() == null ? other.getYljzxs() == null : this.getYljzxs().equals(other.getYljzxs()))
  742 + && (this.getCjzxjs() == null ? other.getCjzxjs() == null : this.getCjzxjs().equals(other.getCjzxjs()))
  743 + && (this.getYlsdfjzxyas() == null ? other.getYlsdfjzxyas() == null : this.getYlsdfjzxyas().equals(other.getYlsdfjzxyas()))
  744 + && (this.getZdgc() == null ? other.getZdgc() == null : this.getZdgc().equals(other.getZdgc()))
  745 + && (this.getGysz() == null ? other.getGysz() == null : this.getGysz().equals(other.getGysz()))
  746 + && (this.getDmdzdb() == null ? other.getDmdzdb() == null : this.getDmdzdb().equals(other.getDmdzdb()))
  747 + && (this.getZzdba() == null ? other.getZzdba() == null : this.getZzdba().equals(other.getZzdba()))
  748 + && (this.getGmdzdb() == null ? other.getGmdzdb() == null : this.getGmdzdb().equals(other.getGmdzdb()))
  749 + && (this.getZzdbb() == null ? other.getZzdbb() == null : this.getZzdbb().equals(other.getZzdbb()))
  750 + && (this.getAky() == null ? other.getAky() == null : this.getAky().equals(other.getAky()))
  751 + && (this.getRfgdb() == null ? other.getRfgdb() == null : this.getRfgdb().equals(other.getRfgdb()))
  752 + && (this.getTlky() == null ? other.getTlky() == null : this.getTlky().equals(other.getTlky()))
  753 + && (this.getJtdb() == null ? other.getJtdb() == null : this.getJtdb().equals(other.getJtdb()))
  754 + && (this.getApky() == null ? other.getApky() == null : this.getApky().equals(other.getApky()))
  755 + && (this.getLzxbaky() == null ? other.getLzxbaky() == null : this.getLzxbaky().equals(other.getLzxbaky()))
  756 + && (this.getSyyyt() == null ? other.getSyyyt() == null : this.getSyyyt().equals(other.getSyyyt()))
  757 + && (this.getJnzyt() == null ? other.getJnzyt() == null : this.getJnzyt().equals(other.getJnzyt()))
  758 + && (this.getRxzyt() == null ? other.getRxzyt() == null : this.getRxzyt().equals(other.getRxzyt()));
  759 + }
  760 +
  761 + @Override
  762 + public int hashCode() {
  763 + final int prime = 31;
  764 + int result = 1;
  765 + result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
  766 + result = prime * result + ((getPcid() == null) ? 0 : getPcid().hashCode());
  767 + result = prime * result + ((getHid() == null) ? 0 : getHid().hashCode());
  768 + result = prime * result + ((getCreatedtime() == null) ? 0 : getCreatedtime().hashCode());
  769 + result = prime * result + ((getUpdatedtime() == null) ? 0 : getUpdatedtime().hashCode());
  770 + result = prime * result + ((getCheckdate() == null) ? 0 : getCheckdate().hashCode());
  771 + result = prime * result + ((getOutpatientsCard() == null) ? 0 : getOutpatientsCard().hashCode());
  772 + result = prime * result + ((getGaoya() == null) ? 0 : getGaoya().hashCode());
  773 + result = prime * result + ((getDiya() == null) ? 0 : getDiya().hashCode());
  774 + result = prime * result + ((getWeight() == null) ? 0 : getWeight().hashCode());
  775 + result = prime * result + ((getHeight() == null) ? 0 : getHeight().hashCode());
  776 + result = prime * result + ((getBlood() == null) ? 0 : getBlood().hashCode());
  777 + result = prime * result + ((getPulse() == null) ? 0 : getPulse().hashCode());
  778 + result = prime * result + ((getAnimalHeat() == null) ? 0 : getAnimalHeat().hashCode());
  779 + result = prime * result + ((getClpscjs() == null) ? 0 : getClpscjs().hashCode());
  780 + result = prime * result + ((getChtscs() == null) ? 0 : getChtscs().hashCode());
  781 + result = prime * result + ((getCec() == null) ? 0 : getCec().hashCode());
  782 + result = prime * result + ((getCtmrs() == null) ? 0 : getCtmrs().hashCode());
  783 + result = prime * result + ((getYunt() == null) ? 0 : getYunt().hashCode());
  784 + result = prime * result + ((getGaot() == null) ? 0 : getGaot().hashCode());
  785 + result = prime * result + ((getPhbd() == null) ? 0 : getPhbd().hashCode());
  786 + result = prime * result + ((getQjdbd() == null) ? 0 : getQjdbd().hashCode());
  787 + result = prime * result + ((getGjbd() == null) ? 0 : getGjbd().hashCode());
  788 + result = prime * result + ((getHxbbd() == null) ? 0 : getHxbbd().hashCode());
  789 + result = prime * result + ((getSpxbbd() == null) ? 0 : getSpxbbd().hashCode());
  790 + result = prime * result + ((getXsxbbd() == null) ? 0 : getXsxbbd().hashCode());
  791 + result = prime * result + ((getMjbd() == null) ? 0 : getMjbd().hashCode());
  792 + result = prime * result + ((getDcbd() == null) ? 0 : getDcbd().hashCode());
  793 + result = prime * result + ((getAsybd() == null) ? 0 : getAsybd().hashCode());
  794 + result = prime * result + ((getBxbbd() == null) ? 0 : getBxbbd().hashCode());
  795 + result = prime * result + ((getGjxbxjc() == null) ? 0 : getGjxbxjc().hashCode());
  796 + result = prime * result + ((getGjrrtlbdjc() == null) ? 0 : getGjrrtlbdjc().hashCode());
  797 + result = prime * result + ((getRxasc() == null) ? 0 : getRxasc().hashCode());
  798 + result = prime * result + ((getRxcc() == null) ? 0 : getRxcc().hashCode());
  799 + result = prime * result + ((getRxmb() == null) ? 0 : getRxmb().hashCode());
  800 + result = prime * result + ((getBchyc() == null) ? 0 : getBchyc().hashCode());
  801 + result = prime * result + ((getXqhcgsp() == null) ? 0 : getXqhcgsp().hashCode());
  802 + result = prime * result + ((getBxb() == null) ? 0 : getBxb().hashCode());
  803 + result = prime * result + ((getHxbjs() == null) ? 0 : getHxbjs().hashCode());
  804 + result = prime * result + ((getXhdb() == null) ? 0 : getXhdb().hashCode());
  805 + result = prime * result + ((getXxbbr() == null) ? 0 : getXxbbr().hashCode());
  806 + result = prime * result + ((getAvghxbxhdbhl() == null) ? 0 : getAvghxbxhdbhl().hashCode());
  807 + result = prime * result + ((getAvghxbxhdbnd() == null) ? 0 : getAvghxbxhdbnd().hashCode());
  808 + result = prime * result + ((getHxbfbkd() == null) ? 0 : getHxbfbkd().hashCode());
  809 + result = prime * result + ((getXxbjs() == null) ? 0 : getXxbjs().hashCode());
  810 + result = prime * result + ((getAvgxxbtj() == null) ? 0 : getAvgxxbtj().hashCode());
  811 + result = prime * result + ((getXxbfbkd() == null) ? 0 : getXxbfbkd().hashCode());
  812 + result = prime * result + ((getXxbjy() == null) ? 0 : getXxbjy().hashCode());
  813 + result = prime * result + ((getLbxbbfb() == null) ? 0 : getLbxbbfb().hashCode());
  814 + result = prime * result + ((getZxlxbbfb() == null) ? 0 : getZxlxbbfb().hashCode());
  815 + result = prime * result + ((getLbxbz() == null) ? 0 : getLbxbz().hashCode());
  816 + result = prime * result + ((getZxlxbz() == null) ? 0 : getZxlxbz().hashCode());
  817 + result = prime * result + ((getAvghxbtj() == null) ? 0 : getAvghxbtj().hashCode());
  818 + result = prime * result + ((getSjd() == null) ? 0 : getSjd().hashCode());
  819 + result = prime * result + ((getNiaot() == null) ? 0 : getNiaot().hashCode());
  820 + result = prime * result + ((getTongt() == null) ? 0 : getTongt().hashCode());
  821 + result = prime * result + ((getNdy() == null) ? 0 : getNdy().hashCode());
  822 + result = prime * result + ((getDhs() == null) ? 0 : getDhs().hashCode());
  823 + result = prime * result + ((getNdb() == null) ? 0 : getNdb().hashCode());
  824 + result = prime * result + ((getGbzam() == null) ? 0 : getGbzam().hashCode());
  825 + result = prime * result + ((getGczam() == null) ? 0 : getGczam().hashCode());
  826 + result = prime * result + ((getJxlsm() == null) ? 0 : getJxlsm().hashCode());
  827 + result = prime * result + ((getGbxztm() == null) ? 0 : getGbxztm().hashCode());
  828 + result = prime * result + ((getZdhs() == null) ? 0 : getZdhs().hashCode());
  829 + result = prime * result + ((getZjdhz() == null) ? 0 : getZjdhz().hashCode());
  830 + result = prime * result + ((getJjdhs() == null) ? 0 : getJjdhs().hashCode());
  831 + result = prime * result + ((getZdb() == null) ? 0 : getZdb().hashCode());
  832 + result = prime * result + ((getBdb() == null) ? 0 : getBdb().hashCode());
  833 + result = prime * result + ((getQdb() == null) ? 0 : getQdb().hashCode());
  834 + result = prime * result + ((getBqb() == null) ? 0 : getBqb().hashCode());
  835 + result = prime * result + ((getGcgbbz() == null) ? 0 : getGcgbbz().hashCode());
  836 + result = prime * result + ((getJigan() == null) ? 0 : getJigan().hashCode());
  837 + result = prime * result + ((getNsa() == null) ? 0 : getNsa().hashCode());
  838 + result = prime * result + ((getXqgysccd() == null) ? 0 : getXqgysccd().hashCode());
  839 + result = prime * result + ((getJia() == null) ? 0 : getJia().hashCode());
  840 + result = prime * result + ((getNa() == null) ? 0 : getNa().hashCode());
  841 + result = prime * result + ((getLv() == null) ? 0 : getLv().hashCode());
  842 + result = prime * result + ((getGai() == null) ? 0 : getGai().hashCode());
  843 + result = prime * result + ((getGlucose() == null) ? 0 : getGlucose().hashCode());
  844 + result = prime * result + ((getNiaos() == null) ? 0 : getNiaos().hashCode());
  845 + result = prime * result + ((getNsjgqcl() == null) ? 0 : getNsjgqcl().hashCode());
  846 + result = prime * result + ((getSxqlglcd() == null) ? 0 : getSxqlglcd().hashCode());
  847 + result = prime * result + ((getWqdb() == null) ? 0 : getWqdb().hashCode());
  848 + result = prime * result + ((getZsdjzxyas() == null) ? 0 : getZsdjzxyas().hashCode());
  849 + result = prime * result + ((getZjzxs() == null) ? 0 : getZjzxs().hashCode());
  850 + result = prime * result + ((getYljzxs() == null) ? 0 : getYljzxs().hashCode());
  851 + result = prime * result + ((getCjzxjs() == null) ? 0 : getCjzxjs().hashCode());
  852 + result = prime * result + ((getYlsdfjzxyas() == null) ? 0 : getYlsdfjzxyas().hashCode());
  853 + result = prime * result + ((getZdgc() == null) ? 0 : getZdgc().hashCode());
  854 + result = prime * result + ((getGysz() == null) ? 0 : getGysz().hashCode());
  855 + result = prime * result + ((getDmdzdb() == null) ? 0 : getDmdzdb().hashCode());
  856 + result = prime * result + ((getZzdba() == null) ? 0 : getZzdba().hashCode());
  857 + result = prime * result + ((getGmdzdb() == null) ? 0 : getGmdzdb().hashCode());
  858 + result = prime * result + ((getZzdbb() == null) ? 0 : getZzdbb().hashCode());
  859 + result = prime * result + ((getAky() == null) ? 0 : getAky().hashCode());
  860 + result = prime * result + ((getRfgdb() == null) ? 0 : getRfgdb().hashCode());
  861 + result = prime * result + ((getTlky() == null) ? 0 : getTlky().hashCode());
  862 + result = prime * result + ((getJtdb() == null) ? 0 : getJtdb().hashCode());
  863 + result = prime * result + ((getApky() == null) ? 0 : getApky().hashCode());
  864 + result = prime * result + ((getLzxbaky() == null) ? 0 : getLzxbaky().hashCode());
  865 + result = prime * result + ((getSyyyt() == null) ? 0 : getSyyyt().hashCode());
  866 + result = prime * result + ((getJnzyt() == null) ? 0 : getJnzyt().hashCode());
  867 + result = prime * result + ((getRxzyt() == null) ? 0 : getRxzyt().hashCode());
  868 + return result;
  869 + }
  870 +
  871 + @Override
  872 + public String toString() {
  873 + StringBuilder sb = new StringBuilder();
  874 + sb.append(getClass().getSimpleName());
  875 + sb.append(" [");
  876 + sb.append("Hash = ").append(hashCode());
  877 + sb.append(", id=").append(id);
  878 + sb.append(", pcid=").append(pcid);
  879 + sb.append(", hid=").append(hid);
  880 + sb.append(", createdtime=").append(createdtime);
  881 + sb.append(", updatedtime=").append(updatedtime);
  882 + sb.append(", checkdate=").append(checkdate);
  883 + sb.append(", outpatientsCard=").append(outpatientsCard);
  884 + sb.append(", gaoya=").append(gaoya);
  885 + sb.append(", diya=").append(diya);
  886 + sb.append(", weight=").append(weight);
  887 + sb.append(", height=").append(height);
  888 + sb.append(", blood=").append(blood);
  889 + sb.append(", pulse=").append(pulse);
  890 + sb.append(", animalHeat=").append(animalHeat);
  891 + sb.append(", clpscjs=").append(clpscjs);
  892 + sb.append(", chtscs=").append(chtscs);
  893 + sb.append(", cec=").append(cec);
  894 + sb.append(", ctmrs=").append(ctmrs);
  895 + sb.append(", yunt=").append(yunt);
  896 + sb.append(", gaot=").append(gaot);
  897 + sb.append(", phbd=").append(phbd);
  898 + sb.append(", qjdbd=").append(qjdbd);
  899 + sb.append(", gjbd=").append(gjbd);
  900 + sb.append(", hxbbd=").append(hxbbd);
  901 + sb.append(", spxbbd=").append(spxbbd);
  902 + sb.append(", xsxbbd=").append(xsxbbd);
  903 + sb.append(", mjbd=").append(mjbd);
  904 + sb.append(", dcbd=").append(dcbd);
  905 + sb.append(", asybd=").append(asybd);
  906 + sb.append(", bxbbd=").append(bxbbd);
  907 + sb.append(", gjxbxjc=").append(gjxbxjc);
  908 + sb.append(", gjrrtlbdjc=").append(gjrrtlbdjc);
  909 + sb.append(", rxasc=").append(rxasc);
  910 + sb.append(", rxcc=").append(rxcc);
  911 + sb.append(", rxmb=").append(rxmb);
  912 + sb.append(", bchyc=").append(bchyc);
  913 + sb.append(", xqhcgsp=").append(xqhcgsp);
  914 + sb.append(", bxb=").append(bxb);
  915 + sb.append(", hxbjs=").append(hxbjs);
  916 + sb.append(", xhdb=").append(xhdb);
  917 + sb.append(", xxbbr=").append(xxbbr);
  918 + sb.append(", avghxbxhdbhl=").append(avghxbxhdbhl);
  919 + sb.append(", avghxbxhdbnd=").append(avghxbxhdbnd);
  920 + sb.append(", hxbfbkd=").append(hxbfbkd);
  921 + sb.append(", xxbjs=").append(xxbjs);
  922 + sb.append(", avgxxbtj=").append(avgxxbtj);
  923 + sb.append(", xxbfbkd=").append(xxbfbkd);
  924 + sb.append(", xxbjy=").append(xxbjy);
  925 + sb.append(", lbxbbfb=").append(lbxbbfb);
  926 + sb.append(", zxlxbbfb=").append(zxlxbbfb);
  927 + sb.append(", lbxbz=").append(lbxbz);
  928 + sb.append(", zxlxbz=").append(zxlxbz);
  929 + sb.append(", avghxbtj=").append(avghxbtj);
  930 + sb.append(", sjd=").append(sjd);
  931 + sb.append(", niaot=").append(niaot);
  932 + sb.append(", tongt=").append(tongt);
  933 + sb.append(", ndy=").append(ndy);
  934 + sb.append(", dhs=").append(dhs);
  935 + sb.append(", ndb=").append(ndb);
  936 + sb.append(", gbzam=").append(gbzam);
  937 + sb.append(", gczam=").append(gczam);
  938 + sb.append(", jxlsm=").append(jxlsm);
  939 + sb.append(", gbxztm=").append(gbxztm);
  940 + sb.append(", zdhs=").append(zdhs);
  941 + sb.append(", zjdhz=").append(zjdhz);
  942 + sb.append(", jjdhs=").append(jjdhs);
  943 + sb.append(", zdb=").append(zdb);
  944 + sb.append(", bdb=").append(bdb);
  945 + sb.append(", qdb=").append(qdb);
  946 + sb.append(", bqb=").append(bqb);
  947 + sb.append(", gcgbbz=").append(gcgbbz);
  948 + sb.append(", jigan=").append(jigan);
  949 + sb.append(", nsa=").append(nsa);
  950 + sb.append(", xqgysccd=").append(xqgysccd);
  951 + sb.append(", jia=").append(jia);
  952 + sb.append(", na=").append(na);
  953 + sb.append(", lv=").append(lv);
  954 + sb.append(", gai=").append(gai);
  955 + sb.append(", glucose=").append(glucose);
  956 + sb.append(", niaos=").append(niaos);
  957 + sb.append(", nsjgqcl=").append(nsjgqcl);
  958 + sb.append(", sxqlglcd=").append(sxqlglcd);
  959 + sb.append(", wqdb=").append(wqdb);
  960 + sb.append(", zsdjzxyas=").append(zsdjzxyas);
  961 + sb.append(", zjzxs=").append(zjzxs);
  962 + sb.append(", yljzxs=").append(yljzxs);
  963 + sb.append(", cjzxjs=").append(cjzxjs);
  964 + sb.append(", ylsdfjzxyas=").append(ylsdfjzxyas);
  965 + sb.append(", zdgc=").append(zdgc);
  966 + sb.append(", gysz=").append(gysz);
  967 + sb.append(", dmdzdb=").append(dmdzdb);
  968 + sb.append(", zzdba=").append(zzdba);
  969 + sb.append(", gmdzdb=").append(gmdzdb);
  970 + sb.append(", zzdbb=").append(zzdbb);
  971 + sb.append(", aky=").append(aky);
  972 + sb.append(", rfgdb=").append(rfgdb);
  973 + sb.append(", tlky=").append(tlky);
  974 + sb.append(", jtdb=").append(jtdb);
  975 + sb.append(", apky=").append(apky);
  976 + sb.append(", lzxbaky=").append(lzxbaky);
  977 + sb.append(", syyyt=").append(syyyt);
  978 + sb.append(", jnzyt=").append(jnzyt);
  979 + sb.append(", rxzyt=").append(rxzyt);
  980 + sb.append(", serialVersionUID=").append(serialVersionUID);
  981 + sb.append("]");
  982 + return sb.toString();
  983 + }
  984 +}
talkonlineweb/src/main/java/com/lyms/talkonlineweb/mapper/LymsInspectionReportMapper.java View file @ 861389c
  1 +package com.lyms.talkonlineweb.mapper;
  2 +
  3 +import com.lyms.talkonlineweb.domain.LymsInspectionReport;
  4 +import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  5 +
  6 +/**
  7 +* @author shiy
  8 +* @description 针对表【lyms_inspection_report(检查报告)】的数据库操作Mapper
  9 +* @createDate 2022-07-15 16:48:20
  10 +* @Entity com.lyms.talkonlineweb.domain.LymsInspectionReport
  11 +*/
  12 +public interface LymsInspectionReportMapper extends BaseMapper<LymsInspectionReport> {
  13 +
  14 +}
talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/LymsInspectionReportService.java View file @ 861389c
  1 +package com.lyms.talkonlineweb.service;
  2 +
  3 +import com.lyms.talkonlineweb.domain.LymsInspectionReport;
  4 +import com.baomidou.mybatisplus.extension.service.IService;
  5 +
  6 +/**
  7 +* @author shiy
  8 +* @description 针对表【lyms_inspection_report(检查报告)】的数据库操作Service
  9 +* @createDate 2022-07-15 16:48:20
  10 +*/
  11 +public interface LymsInspectionReportService extends IService<LymsInspectionReport> {
  12 +
  13 +}
talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/LymsInspectionReportServiceImpl.java View file @ 861389c
  1 +package com.lyms.talkonlineweb.service.impl;
  2 +
  3 +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  4 +import com.lyms.talkonlineweb.domain.LymsInspectionReport;
  5 +import com.lyms.talkonlineweb.service.LymsInspectionReportService;
  6 +import com.lyms.talkonlineweb.mapper.LymsInspectionReportMapper;
  7 +import org.springframework.stereotype.Service;
  8 +
  9 +/**
  10 +* @author shiy
  11 +* @description 针对表【lyms_inspection_report(检查报告)】的数据库操作Service实现
  12 +* @createDate 2022-07-15 16:48:20
  13 +*/
  14 +@Service
  15 +public class LymsInspectionReportServiceImpl extends ServiceImpl<LymsInspectionReportMapper, LymsInspectionReport>
  16 + implements LymsInspectionReportService{
  17 +
  18 +}
talkonlineweb/src/main/resources/mapper/LymsInspectionReportMapper.xml View file @ 861389c
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE mapper
  3 + PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4 + "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5 +<mapper namespace="com.lyms.talkonlineweb.mapper.LymsInspectionReportMapper">
  6 +
  7 + <resultMap id="BaseResultMap" type="com.lyms.talkonlineweb.domain.LymsInspectionReport">
  8 + <id property="id" column="id" jdbcType="INTEGER"/>
  9 + <result property="pcid" column="pcid" jdbcType="INTEGER"/>
  10 + <result property="hid" column="hid" jdbcType="INTEGER"/>
  11 + <result property="createdtime" column="createdtime" jdbcType="TIMESTAMP"/>
  12 + <result property="updatedtime" column="updatedtime" jdbcType="TIMESTAMP"/>
  13 + <result property="checkdate" column="checkdate" jdbcType="TIMESTAMP"/>
  14 + <result property="outpatientsCard" column="outpatients_card" jdbcType="VARCHAR"/>
  15 + <result property="gaoya" column="gaoya" jdbcType="VARCHAR"/>
  16 + <result property="diya" column="diya" jdbcType="VARCHAR"/>
  17 + <result property="weight" column="weight" jdbcType="VARCHAR"/>
  18 + <result property="height" column="height" jdbcType="VARCHAR"/>
  19 + <result property="blood" column="blood" jdbcType="VARCHAR"/>
  20 + <result property="pulse" column="pulse" jdbcType="VARCHAR"/>
  21 + <result property="animalHeat" column="animal_heat" jdbcType="VARCHAR"/>
  22 + <result property="clpscjs" column="clpscjs" jdbcType="VARCHAR"/>
  23 + <result property="chtscs" column="chtscs" jdbcType="VARCHAR"/>
  24 + <result property="cec" column="cec" jdbcType="VARCHAR"/>
  25 + <result property="ctmrs" column="ctmrs" jdbcType="VARCHAR"/>
  26 + <result property="yunt" column="yunt" jdbcType="VARCHAR"/>
  27 + <result property="gaot" column="gaot" jdbcType="VARCHAR"/>
  28 + <result property="phbd" column="phbd" jdbcType="VARCHAR"/>
  29 + <result property="qjdbd" column="qjdbd" jdbcType="VARCHAR"/>
  30 + <result property="gjbd" column="gjbd" jdbcType="VARCHAR"/>
  31 + <result property="hxbbd" column="hxbbd" jdbcType="VARCHAR"/>
  32 + <result property="spxbbd" column="spxbbd" jdbcType="VARCHAR"/>
  33 + <result property="xsxbbd" column="xsxbbd" jdbcType="VARCHAR"/>
  34 + <result property="mjbd" column="mjbd" jdbcType="VARCHAR"/>
  35 + <result property="dcbd" column="dcbd" jdbcType="VARCHAR"/>
  36 + <result property="asybd" column="asybd" jdbcType="VARCHAR"/>
  37 + <result property="bxbbd" column="bxbbd" jdbcType="VARCHAR"/>
  38 + <result property="gjxbxjc" column="gjxbxjc" jdbcType="VARCHAR"/>
  39 + <result property="gjrrtlbdjc" column="gjrrtlbdjc" jdbcType="VARCHAR"/>
  40 + <result property="rxasc" column="rxasc" jdbcType="VARCHAR"/>
  41 + <result property="rxcc" column="rxcc" jdbcType="VARCHAR"/>
  42 + <result property="rxmb" column="rxmb" jdbcType="VARCHAR"/>
  43 + <result property="bchyc" column="bchyc" jdbcType="VARCHAR"/>
  44 + <result property="xqhcgsp" column="xqhcgsp" jdbcType="VARCHAR"/>
  45 + <result property="bxb" column="bxb" jdbcType="VARCHAR"/>
  46 + <result property="hxbjs" column="hxbjs" jdbcType="VARCHAR"/>
  47 + <result property="xhdb" column="xhdb" jdbcType="VARCHAR"/>
  48 + <result property="xxbbr" column="xxbbr" jdbcType="VARCHAR"/>
  49 + <result property="avghxbxhdbhl" column="avghxbxhdbhl" jdbcType="VARCHAR"/>
  50 + <result property="avghxbxhdbnd" column="avghxbxhdbnd" jdbcType="VARCHAR"/>
  51 + <result property="hxbfbkd" column="hxbfbkd" jdbcType="VARCHAR"/>
  52 + <result property="xxbjs" column="xxbjs" jdbcType="VARCHAR"/>
  53 + <result property="avgxxbtj" column="avgxxbtj" jdbcType="VARCHAR"/>
  54 + <result property="xxbfbkd" column="xxbfbkd" jdbcType="VARCHAR"/>
  55 + <result property="xxbjy" column="xxbjy" jdbcType="VARCHAR"/>
  56 + <result property="lbxbbfb" column="lbxbbfb" jdbcType="VARCHAR"/>
  57 + <result property="zxlxbbfb" column="zxlxbbfb" jdbcType="VARCHAR"/>
  58 + <result property="lbxbz" column="lbxbz" jdbcType="VARCHAR"/>
  59 + <result property="zxlxbz" column="zxlxbz" jdbcType="VARCHAR"/>
  60 + <result property="avghxbtj" column="avghxbtj" jdbcType="VARCHAR"/>
  61 + <result property="sjd" column="sjd" jdbcType="VARCHAR"/>
  62 + <result property="niaot" column="niaot" jdbcType="VARCHAR"/>
  63 + <result property="tongt" column="tongt" jdbcType="VARCHAR"/>
  64 + <result property="ndy" column="ndy" jdbcType="VARCHAR"/>
  65 + <result property="dhs" column="dhs" jdbcType="VARCHAR"/>
  66 + <result property="ndb" column="ndb" jdbcType="VARCHAR"/>
  67 + <result property="gbzam" column="gbzam" jdbcType="VARCHAR"/>
  68 + <result property="gczam" column="gczam" jdbcType="VARCHAR"/>
  69 + <result property="jxlsm" column="jxlsm" jdbcType="VARCHAR"/>
  70 + <result property="gbxztm" column="gbxztm" jdbcType="VARCHAR"/>
  71 + <result property="zdhs" column="zdhs" jdbcType="VARCHAR"/>
  72 + <result property="zjdhz" column="zjdhz" jdbcType="VARCHAR"/>
  73 + <result property="jjdhs" column="jjdhs" jdbcType="VARCHAR"/>
  74 + <result property="zdb" column="zdb" jdbcType="VARCHAR"/>
  75 + <result property="bdb" column="bdb" jdbcType="VARCHAR"/>
  76 + <result property="qdb" column="qdb" jdbcType="VARCHAR"/>
  77 + <result property="bqb" column="bqb" jdbcType="VARCHAR"/>
  78 + <result property="gcgbbz" column="gcgbbz" jdbcType="VARCHAR"/>
  79 + <result property="jigan" column="jigan" jdbcType="VARCHAR"/>
  80 + <result property="nsa" column="nsa" jdbcType="VARCHAR"/>
  81 + <result property="xqgysccd" column="xqgysccd" jdbcType="VARCHAR"/>
  82 + <result property="jia" column="jia" jdbcType="VARCHAR"/>
  83 + <result property="na" column="na" jdbcType="VARCHAR"/>
  84 + <result property="lv" column="lv" jdbcType="VARCHAR"/>
  85 + <result property="gai" column="gai" jdbcType="VARCHAR"/>
  86 + <result property="glucose" column="glucose" jdbcType="VARCHAR"/>
  87 + <result property="niaos" column="niaos" jdbcType="VARCHAR"/>
  88 + <result property="nsjgqcl" column="nsjgqcl" jdbcType="VARCHAR"/>
  89 + <result property="sxqlglcd" column="sxqlglcd" jdbcType="VARCHAR"/>
  90 + <result property="wqdb" column="wqdb" jdbcType="VARCHAR"/>
  91 + <result property="zsdjzxyas" column="zsdjzxyas" jdbcType="VARCHAR"/>
  92 + <result property="zjzxs" column="zjzxs" jdbcType="VARCHAR"/>
  93 + <result property="yljzxs" column="yljzxs" jdbcType="VARCHAR"/>
  94 + <result property="cjzxjs" column="cjzxjs" jdbcType="VARCHAR"/>
  95 + <result property="ylsdfjzxyas" column="ylsdfjzxyas" jdbcType="VARCHAR"/>
  96 + <result property="zdgc" column="zdgc" jdbcType="VARCHAR"/>
  97 + <result property="gysz" column="gysz" jdbcType="VARCHAR"/>
  98 + <result property="dmdzdb" column="dmdzdb" jdbcType="VARCHAR"/>
  99 + <result property="zzdba" column="zzdba" jdbcType="VARCHAR"/>
  100 + <result property="gmdzdb" column="gmdzdb" jdbcType="VARCHAR"/>
  101 + <result property="zzdbb" column="zzdbb" jdbcType="VARCHAR"/>
  102 + <result property="aky" column="aky" jdbcType="VARCHAR"/>
  103 + <result property="rfgdb" column="rfgdb" jdbcType="VARCHAR"/>
  104 + <result property="tlky" column="tlky" jdbcType="VARCHAR"/>
  105 + <result property="jtdb" column="jtdb" jdbcType="VARCHAR"/>
  106 + <result property="apky" column="apky" jdbcType="VARCHAR"/>
  107 + <result property="lzxbaky" column="lzxbaky" jdbcType="VARCHAR"/>
  108 + <result property="syyyt" column="syyyt" jdbcType="VARCHAR"/>
  109 + <result property="jnzyt" column="jnzyt" jdbcType="VARCHAR"/>
  110 + <result property="rxzyt" column="rxzyt" jdbcType="VARCHAR"/>
  111 + </resultMap>
  112 +
  113 + <sql id="Base_Column_List">
  114 + id,pcid,hid,
  115 + createdtime,updatedtime,checkdate,
  116 + outpatients_card,gaoya,diya,
  117 + weight,height,blood,
  118 + pulse,animal_heat,clpscjs,
  119 + chtscs,cec,ctmrs,
  120 + yunt,gaot,phbd,
  121 + qjdbd,gjbd,hxbbd,
  122 + spxbbd,xsxbbd,mjbd,
  123 + dcbd,asybd,bxbbd,
  124 + gjxbxjc,gjrrtlbdjc,rxasc,
  125 + rxcc,rxmb,bchyc,
  126 + xqhcgsp,bxb,hxbjs,
  127 + xhdb,xxbbr,avghxbxhdbhl,
  128 + avghxbxhdbnd,hxbfbkd,xxbjs,
  129 + avgxxbtj,xxbfbkd,xxbjy,
  130 + lbxbbfb,zxlxbbfb,lbxbz,
  131 + zxlxbz,avghxbtj,sjd,
  132 + niaot,tongt,ndy,
  133 + dhs,ndb,gbzam,
  134 + gczam,jxlsm,gbxztm,
  135 + zdhs,zjdhz,jjdhs,
  136 + zdb,bdb,qdb,
  137 + bqb,gcgbbz,jigan,
  138 + nsa,xqgysccd,jia,
  139 + na,lv,gai,
  140 + glucose,niaos,nsjgqcl,
  141 + sxqlglcd,wqdb,zsdjzxyas,
  142 + zjzxs,yljzxs,cjzxjs,
  143 + ylsdfjzxyas,zdgc,gysz,
  144 + dmdzdb,zzdba,gmdzdb,
  145 + zzdbb,aky,rfgdb,
  146 + tlky,jtdb,apky,
  147 + lzxbaky,syyyt,jnzyt,
  148 + rxzyt
  149 + </sql>
  150 +</mapper>