CostIncomeGroup.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. package com.imed.costaccount.model;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import lombok.AllArgsConstructor;
  5. import lombok.Data;
  6. import lombok.NoArgsConstructor;
  7. import lombok.experimental.Accessors;
  8. import java.io.Serializable;
  9. import java.math.BigDecimal;
  10. /**
  11. * 收入归集
  12. *
  13. * @author KCYG
  14. * @email KCYG@xinxicom
  15. * @date 2021-08-10 09:54:43
  16. */
  17. @Data
  18. @Accessors(chain = true)
  19. @AllArgsConstructor
  20. @NoArgsConstructor
  21. @TableName("cost_income_group")
  22. public class CostIncomeGroup implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. /**
  25. * 收入归集的Id
  26. */
  27. @TableId
  28. private Long id;
  29. /**
  30. * 开单科室的Code
  31. */
  32. private String openDepartmentCode;
  33. /**
  34. * 开单责任中心的Code
  35. */
  36. private String openResponsibilityCode;
  37. /**
  38. * 执行科室的Code
  39. */
  40. private String startDepartmentCode;
  41. /**
  42. * 执行责任中心的Code
  43. */
  44. private String startResponsibilityCode;
  45. /**
  46. * 成本项目的Code
  47. */
  48. private String productCode;
  49. /**
  50. * 成本项目的名称
  51. */
  52. private String productName;
  53. /**
  54. * 会计科目Code
  55. */
  56. private String accountCode;
  57. /**
  58. * 会计科目名称
  59. */
  60. private String accountName;
  61. /**
  62. * 开单科室收到的钱
  63. */
  64. private BigDecimal openDepartmentAmount;
  65. /**
  66. * 执行科室的钱
  67. */
  68. private BigDecimal startDepartmentAmount;
  69. /**
  70. * 金额
  71. */
  72. private BigDecimal amount;
  73. /**
  74. * 归属医院id
  75. */
  76. private Long hospId;
  77. /**
  78. * 文件id
  79. */
  80. private Long fileId;
  81. /**
  82. * 文件编号
  83. */
  84. private Long doctorNumber;
  85. /**
  86. * 开单医生名称
  87. */
  88. private String doctorName;
  89. /**
  90. * 患者ID
  91. */
  92. private Long patientId;
  93. /**
  94. * 住院号
  95. */
  96. private Long outpatientId;
  97. /**
  98. * 患者姓名
  99. */
  100. private String patientName;
  101. /**
  102. * 病人费别
  103. */
  104. private String patientFee;
  105. /**
  106. * 收据费别
  107. */
  108. private String receiptFee;
  109. /**
  110. * 数量
  111. */
  112. private Integer totalNumber;
  113. /**
  114. * 单位
  115. */
  116. private String unit;
  117. /**
  118. * 费用发生时间
  119. */
  120. private Integer feeDatetime;
  121. /**
  122. * 年份
  123. */
  124. private Integer dateYear;
  125. /**
  126. * 月份
  127. */
  128. private Integer dateMonth;
  129. /**
  130. * 创建时间13位时间戳
  131. */
  132. private Long createTime;
  133. /**
  134. * 删除时间,如果存在表示已删除13位时间戳
  135. */
  136. private Long deleteTime;
  137. }