QcCasesEntryAllVO.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package com.diagbot.vo;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. /**
  6. * @Description:
  7. * @author: wangyu
  8. * @time: 2020/3/30 16:55
  9. */
  10. @Getter
  11. @Setter
  12. public class QcCasesEntryAllVO extends Page {
  13. /**
  14. * 病历id
  15. */
  16. private Long casesId;
  17. /**
  18. * 用于层级定义,由操作人控制录入,需按该列排序
  19. */
  20. private Long modeId;
  21. /**
  22. * 条目
  23. */
  24. private String name;
  25. /**
  26. * 控费标识(1:是控费条目,2:不是控费条目)
  27. */
  28. private Integer drgs;
  29. /**
  30. * 质控形式(1:形式质控,2:内涵CRF质控,3:内涵规则质控)
  31. */
  32. private Integer type;
  33. /**
  34. * 条目编码
  35. */
  36. private String code;
  37. /**
  38. * 规则类型(0:无,1:空项,2:错误)
  39. */
  40. private Integer ruleType;
  41. /**
  42. * 开发状态标识: 0-未开发 1-已开发
  43. */
  44. private Integer devType;
  45. /**
  46. * 准确率类型:0-极高,1-高,2-中,3-低
  47. */
  48. private Integer accuracyType;
  49. }