CostCostingGroup.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 lombok.AllArgsConstructor;
  7. import lombok.Data;
  8. import lombok.NoArgsConstructor;
  9. import lombok.experimental.Accessors;
  10. import java.io.Serializable;
  11. import java.math.BigDecimal;
  12. /**
  13. * 成本归集
  14. *
  15. * @author KCYG
  16. * @email KCYG@xinxicom
  17. * @date 2021-08-12 11:00:23
  18. */
  19. @Data
  20. @Accessors(chain = true)
  21. @AllArgsConstructor
  22. @NoArgsConstructor
  23. @TableName("cost_costing_group")
  24. public class CostCostingGroup implements Serializable {
  25. private static final long serialVersionUID = 1L;
  26. /**
  27. * 成本归集的Id
  28. */
  29. @TableId
  30. private Long id;
  31. /**
  32. * 科室的Code
  33. */
  34. private String departmentCode;
  35. /**
  36. * 科室名称
  37. */
  38. private String departmentName;
  39. /**
  40. * 责任中心的Code
  41. */
  42. private String responsibilityCode;
  43. /**
  44. * 责任中心名称
  45. */
  46. private String responsibilityName;
  47. /**
  48. * 其他责任中心Code
  49. */
  50. private String otherResponsibilityCode;
  51. /**
  52. * 其他责任中心名称
  53. */
  54. private String otherResponsibilityName;
  55. /**
  56. * 成本项目的Code
  57. */
  58. private String productCode;
  59. /**
  60. * 成本项目的名称
  61. */
  62. private String productName;
  63. /**
  64. * 会计科目Code
  65. */
  66. private String accountCode;
  67. /**
  68. * 会计科目名称
  69. */
  70. private String accountName;
  71. /**
  72. * 金额
  73. */
  74. private BigDecimal amount;
  75. /**
  76. * 归属医院id
  77. */
  78. private Long hospId;
  79. /**
  80. * 文件id
  81. */
  82. private Long fileId;
  83. /**
  84. * 统计数据
  85. */
  86. private String afterCostGroup;
  87. /**
  88. * 年份
  89. */
  90. private Integer dateYear;
  91. /**
  92. * 月份
  93. */
  94. private Integer dateMonth;
  95. /**
  96. * 创建时间13位时间戳
  97. */
  98. private Long createTime;
  99. /**
  100. * 删除时间,如果存在表示已删除13位时间戳
  101. */
  102. @TableLogic(value = "0",delval = "UNIX_TIMESTAMP(NOW()) * 1000")
  103. private Long deleteTime;
  104. private Integer computeType;
  105. private Long computeConnectId;
  106. private BigDecimal rate;
  107. @TableField(exist = false)
  108. private Long shareId;
  109. }