123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- package com.kcim.dao.model;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.AllArgsConstructor;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- import lombok.experimental.Accessors;
- import java.io.Serializable;
- import java.math.BigDecimal;
- /**
- * 科室损益计算
- *
- * @author KCYG
- * @email KCYG@xinxicom
- * @date 2021-08-24 16:24:08
- */
- @Data
- @Accessors(chain = true)
- @AllArgsConstructor
- @NoArgsConstructor
- @TableName("cost_department_profit")
- public class CostDepartmentProfit implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- @TableId
- private Long id;
- /**
- * 年份
- */
- private Integer year;
- /**
- * 月份
- */
- private Integer month;
- /**
- * 报表项目父层级Id
- */
- private Long reportParentId;
- /**
- * 报表Id
- */
- private Long reportId;
- /**
- * 报表项目编号
- */
- private Integer reportNum;
- /**
- * 报表项目名称
- */
- private String reportName;
- /**
- * 计算公式
- */
- private String calcFormula;
- /**
- * 计算方式
- */
- private Integer calcType;
- /**
- * 责任中心代码
- */
- private String responsibilityCode;
- /**
- * 责任中心名称
- */
- private String responsibilityName;
- /**
- * 父类责任中心名称
- */
- @TableField(exist = false)
- private String parentResponsibilityCode;
- @TableField(exist = false)
- private String parentResponsibilityName;
- /**
- * 成本类型
- */
- private Integer costType;
- /**
- * 收入类型
- */
- private Integer incomeType;
- /**
- * 金额
- */
- private BigDecimal amount;
- /**
- * 医院id
- */
- private Long hospId;
- /**
- * 创建时间
- */
- private Long createTime;
- /**
- * 删除时间
- */
- @TableLogic(value = "0",delval = "UNIX_TIMESTAMP(NOW()) * 1000")
- private Long deleteTime;
- private Integer shareType;
- private BigDecimal percent;
- }
|