123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- 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-12 11:00:23
- */
- @Data
- @Accessors(chain = true)
- @AllArgsConstructor
- @NoArgsConstructor
- @TableName("cost_costing_group")
- public class CostCostingGroup implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 成本归集的Id
- */
- @TableId
- private Long id;
- /**
- * 科室的Code
- */
- private String departmentCode;
- /**
- * 科室名称
- */
- private String departmentName;
- /**
- * 责任中心的Code
- */
- private String responsibilityCode;
- /**
- * 责任中心名称
- */
- private String responsibilityName;
- /**
- * 其他责任中心Code
- */
- private String otherResponsibilityCode;
- /**
- * 其他责任中心名称
- */
- private String otherResponsibilityName;
- /**
- * 成本项目的Code
- */
- private String productCode;
- /**
- * 成本项目的名称
- */
- private String productName;
- /**
- * 会计科目Code
- */
- private String accountCode;
- /**
- * 会计科目名称
- */
- private String accountName;
- /**
- * 金额
- */
- private BigDecimal amount;
- /**
- * 归属医院id
- */
- private Long hospId;
- /**
- * 文件id
- */
- private Long fileId;
- /**
- * 统计数据
- */
- private String afterCostGroup;
- /**
- * 年份
- */
- private Integer dateYear;
- /**
- * 月份
- */
- private Integer dateMonth;
- /**
- * 创建时间13位时间戳
- */
- private Long createTime;
- /**
- * 删除时间,如果存在表示已删除13位时间戳
- */
- @TableLogic(value = "0",delval = "UNIX_TIMESTAMP(NOW()) * 1000")
- private Long deleteTime;
- private Integer computeType;
- private Long computeConnectId;
- private BigDecimal rate;
- @TableField(exist = false)
- private Long shareId;
- }
|