| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- package com.kcim.vo;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import lombok.Data;
- import java.math.BigDecimal;
- /**
- * @program: CostAccount
- * @description:
- * @author: Wang.YS
- * @create: 2024-02-02 15:49
- **/
- @Data
- public class HospProfitAndLossVo {
- /**
- * 主键
- */
- private Long id;
- /**
- * 年
- */
- private Integer dateYear;
- /**
- * 月
- */
- private Integer dateMonth;
- /**
- * 报表项目id
- */
- private Integer reportNum;
- /**
- * 报表项目名称
- */
- private String reportName;
- /**
- * 成本类型
- */
- private Integer costType;
- /**
- * 收入类型
- */
- private Integer incomeType;
- // 0. 报表项目 1. 全院其他收支
- private Integer originType;
- /**
- * 金额
- */
- private BigDecimal amount;
- private Long hospId;
- private String responsibilityCode;
- private String responsibilityName;
- /**
- * 创建时间
- */
- private Long createTime;
- private BigDecimal percent;
- private Integer type;
- private Integer fraction;
- private Integer calcType;
- private Long reportId;
- private String calcFormula;
- private Long reportParentId;
- }
|