AfterIncomeGroup.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package com.imed.costaccount.model;
  2. import io.swagger.annotations.ApiModel;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.math.BigDecimal;
  6. /**
  7. * @author 李加喜
  8. * @Package com.imed.costaccount.model
  9. * @date 2021-08-10 19:56
  10. */
  11. @Data
  12. @ApiModel("收入数据归集数据标记")
  13. public class AfterIncomeGroup implements Serializable {
  14. private static final long serialVersionUID = 1L;
  15. /**
  16. * 开单科室状态 1 收益中心 2 执行中心
  17. */
  18. private Integer openDepartmentStatus;
  19. private String openDepartmentCode;
  20. /**
  21. * 开单科室比例
  22. */
  23. private String openDepartmentName;
  24. /**
  25. * 开单科室金额
  26. */
  27. private BigDecimal openDepartmentDecimal;
  28. /**
  29. * 执行科室状态 1 收益中心 2 执行中心
  30. */
  31. private Integer startDepartmentStatus;
  32. private String startDepartmentCode;
  33. /**
  34. * 执行科室比例
  35. */
  36. private String startDepartmentName;
  37. /**
  38. * 执行科室金额
  39. */
  40. private BigDecimal startDepartmentDecimal;
  41. /**
  42. * 其他责任中心代码
  43. */
  44. private String responsibilityCode;
  45. /**
  46. * 其他责任中心名称
  47. */
  48. private String responsibilityName;
  49. private BigDecimal otherResponsibilityDecimal;
  50. /**
  51. * 责任中心代码
  52. */
  53. private String openResponsibilityCode;
  54. /**
  55. * 责任中心名称
  56. */
  57. private String openResponsibilityName;
  58. /**
  59. * 责任中心代码
  60. */
  61. private String startResponsibilityCode;
  62. /**
  63. * 责任中心名称
  64. */
  65. private String startResponsibilityName;
  66. /**
  67. * 是直接还是间接 1直接 2 间接
  68. */
  69. private Integer directStatus = 1;
  70. }