Item.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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 com.fasterxml.jackson.annotation.JsonIgnore;
  7. import lombok.AllArgsConstructor;
  8. import lombok.Data;
  9. import lombok.NoArgsConstructor;
  10. import lombok.experimental.Accessors;
  11. import java.io.Serializable;
  12. import java.math.BigDecimal;
  13. import java.util.Date;
  14. import java.util.List;
  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_item")
  26. public class Item 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 type;
  49. /**
  50. *项目分类 公用字典:医疗服务项目分类
  51. */
  52. private String itemType;
  53. @TableField(exist = false)
  54. private String itemTypeName;
  55. /**
  56. * 康程分类代码
  57. */
  58. private String kcCode;
  59. /**
  60. * 康程分类代码
  61. */
  62. @TableField(exist = false)
  63. private String kcCodeName;
  64. /**
  65. * 国家编码
  66. */
  67. private String nationalCode;
  68. /**
  69. * 标准项目代码
  70. */
  71. private String standItemCode;
  72. /**
  73. * 标准项目名称
  74. */
  75. private String standItemName;
  76. /**
  77. * 单价
  78. */
  79. private BigDecimal price;
  80. /**
  81. * 创建人
  82. */
  83. @JsonIgnore
  84. private String createUser;
  85. /**
  86. * 创建时间
  87. */
  88. @JsonIgnore
  89. private Date createTime;
  90. /**
  91. * 更新人
  92. */
  93. @JsonIgnore
  94. private String updateUser;
  95. /**
  96. * 更新时间
  97. */
  98. @JsonIgnore
  99. private Date updateTime;
  100. /**
  101. * 删除人
  102. */
  103. @JsonIgnore
  104. private String deleteUser;
  105. /**
  106. * 删除时间
  107. */
  108. @JsonIgnore
  109. private Date deleteTime;
  110. /**
  111. * 删除标志 0正常 1作废
  112. */
  113. @TableLogic(value = "0",delval = "1")
  114. @JsonIgnore
  115. private Integer delFlag;
  116. /**
  117. * 人员对照信息
  118. */
  119. @TableField(exist = false)
  120. private List<ItemEmpMap> empMaps;
  121. /**
  122. * 设备对照信息
  123. */
  124. @TableField(exist = false)
  125. private List<ItemEquipmentMap> equipmentMaps;
  126. /**
  127. * 空间对照信息
  128. */
  129. @TableField(exist = false)
  130. private List<ItemSpaceMap> spaceMaps;
  131. /**
  132. * 不计价材料
  133. */
  134. @TableField(exist = false)
  135. private List<ItemNoValuationDrugMaterialMap> noValuation;
  136. /**
  137. * 计价材料
  138. */
  139. @TableField(exist = false)
  140. private List<ItemValuationDrugMaterialMap> valuation;
  141. @TableField(exist = false)
  142. private boolean match;
  143. @TableField(exist = false)
  144. private Double percent;
  145. @TableField(exist = false)
  146. private String percentDisplay;
  147. /**
  148. * 科室代码
  149. */
  150. private String departmentCode;
  151. /**
  152. * 科室名称
  153. */
  154. private String departmentName;
  155. @TableField(exist = false)
  156. private StandItem standItem;
  157. /**
  158. * 责任中心代码
  159. */
  160. @TableField(exist = false)
  161. private String responsibilityCode;
  162. }