StandItem.java 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. package com.kcim.dao.model;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableLogic;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import java.math.BigDecimal;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. import java.util.List;
  10. import com.fasterxml.jackson.annotation.JsonIgnore;
  11. import lombok.AllArgsConstructor;
  12. import lombok.Data;
  13. import lombok.NoArgsConstructor;
  14. import lombok.experimental.Accessors;
  15. /**
  16. * 标准项目管理
  17. *
  18. * @author Wang.YS
  19. * @date 2023-10-17 15:35:58
  20. */
  21. @Data
  22. @Accessors(chain = true)
  23. @AllArgsConstructor
  24. @NoArgsConstructor
  25. @TableName("com_stand_item")
  26. public class StandItem implements Serializable {
  27. private static final long serialVersionUID = 1L;
  28. /**
  29. * 主键
  30. */
  31. @TableId
  32. private Integer id;
  33. /**
  34. * 医院id
  35. */
  36. private Long hospId;
  37. /**
  38. * 标准项目代码
  39. */
  40. private String code;
  41. /**
  42. * 标准项目名称
  43. */
  44. private String name;
  45. /**
  46. * 国家编码
  47. */
  48. private String nationalCode;
  49. /**
  50. * 康程分类代码(小类)
  51. */
  52. private String kcClassCode;
  53. /**
  54. * 康程分类名称
  55. */
  56. private String kcClassName;
  57. @TableField(exist = false)
  58. private String kcClassLevelName;
  59. /**
  60. * 康程分类路径
  61. */
  62. private String kcClassPath;
  63. /**
  64. * 执行时间(m)
  65. */
  66. private BigDecimal executeTime;
  67. /**
  68. * 会计科目代码
  69. */
  70. private String accounts;
  71. /**
  72. * 会计科目名称
  73. */
  74. @TableField(exist = false)
  75. private String accountName;
  76. /**
  77. * 技术难度
  78. */
  79. private BigDecimal technicalDifficulty;
  80. /**
  81. * 风险程度
  82. */
  83. private BigDecimal riskDegree;
  84. private String itemType;
  85. @TableField(exist = false)
  86. private String itemTypeName;
  87. /**
  88. * 创建人
  89. */
  90. @JsonIgnore
  91. private String createUser;
  92. /**
  93. * 创建时间
  94. */
  95. @JsonIgnore
  96. private Date createTime;
  97. /**
  98. * 更新人
  99. */
  100. @JsonIgnore
  101. private String updateUser;
  102. /**
  103. * 更新时间
  104. */
  105. @JsonIgnore
  106. private Date updateTime;
  107. /**
  108. * 删除人
  109. */
  110. @JsonIgnore
  111. private String deleteUser;
  112. /**
  113. * 删除时间
  114. */
  115. @JsonIgnore
  116. private Date deleteTime;
  117. /**
  118. * 删除标志 0正常 1作废
  119. */
  120. @JsonIgnore
  121. @TableLogic(value = "0",delval = "1")
  122. private Integer delFlag;
  123. /**
  124. * 人员对照信息
  125. */
  126. @TableField(exist = false)
  127. private List<StandItemEmpMap> empMaps;
  128. /**
  129. * 设备对照信息
  130. */
  131. @TableField(exist = false)
  132. private List<StandItemEquipmentMap> equipmentMaps;
  133. /**
  134. * 空间对照信息
  135. */
  136. @TableField(exist = false)
  137. private List<StandItemSpaceMap> spaceMaps;
  138. @TableField(exist = false)
  139. private Double percent;
  140. @TableField(exist = false)
  141. private String percentDisplay;
  142. @TableField(exist = false)
  143. private Integer historyFlag;
  144. @TableField(exist = false)
  145. private String historyName;
  146. }