HospProfitAndLossVo.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package com.kcim.vo;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableLogic;
  5. import lombok.Data;
  6. import java.math.BigDecimal;
  7. /**
  8. * @program: CostAccount
  9. * @description:
  10. * @author: Wang.YS
  11. * @create: 2024-02-02 15:49
  12. **/
  13. @Data
  14. public class HospProfitAndLossVo {
  15. /**
  16. * 主键
  17. */
  18. private Long id;
  19. /**
  20. * 年
  21. */
  22. private Integer dateYear;
  23. /**
  24. * 月
  25. */
  26. private Integer dateMonth;
  27. /**
  28. * 报表项目id
  29. */
  30. private Integer reportNum;
  31. /**
  32. * 报表项目名称
  33. */
  34. private String reportName;
  35. /**
  36. * 成本类型
  37. */
  38. private Integer costType;
  39. /**
  40. * 收入类型
  41. */
  42. private Integer incomeType;
  43. // 0. 报表项目 1. 全院其他收支
  44. private Integer originType;
  45. /**
  46. * 金额
  47. */
  48. private BigDecimal amount;
  49. private Long hospId;
  50. private String responsibilityCode;
  51. private String responsibilityName;
  52. /**
  53. * 创建时间
  54. */
  55. private Long createTime;
  56. private BigDecimal percent;
  57. private Integer type;
  58. private Integer fraction;
  59. private Integer calcType;
  60. private Long reportId;
  61. private String calcFormula;
  62. private Long reportParentId;
  63. }