AllocationQueryReportVO.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package com.kcim.vo;
  2. import io.swagger.annotations.ApiModel;
  3. import lombok.Data;
  4. import java.math.BigDecimal;
  5. import java.util.List;
  6. /**
  7. * @author 李加喜
  8. * @Package com.imed.costaccount.model.vo
  9. * @date 2021-08-26 11:31
  10. */
  11. @Data
  12. @ApiModel("分摊后报表数据的查询")
  13. public class AllocationQueryReportVO {
  14. /**
  15. * 主键
  16. */
  17. private Long id;
  18. /**
  19. * 年
  20. */
  21. private Integer dateYear;
  22. /**
  23. * 月
  24. */
  25. private Integer dateMonth;
  26. private Long hospId;
  27. /**
  28. * 责任中心代码
  29. */
  30. private String responsibilityCode;
  31. /**
  32. * 责任中心名称
  33. */
  34. private String responsibilityName;
  35. private String targetResponsibilityCode;
  36. private String targetResponsibilityName;
  37. /**
  38. * 来源id
  39. */
  40. private Long originId;
  41. /**
  42. * 来源类型
  43. */
  44. private Long originType;
  45. /**
  46. * 金额
  47. */
  48. private BigDecimal amount;
  49. /**
  50. * 会计科目
  51. */
  52. private String accountingCode;
  53. /***
  54. * 会计科目集合
  55. */
  56. private List<String> accountingCodes;
  57. /**
  58. * 会计科目名称
  59. */
  60. private String accountingName;
  61. /**
  62. * 会计科目名称集合
  63. */
  64. private List<String> accountingNames;
  65. }