12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package com.imed.costaccount.model;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- import lombok.AllArgsConstructor;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- import lombok.experimental.Accessors;
- /**
- * 成本分摊后表
- *
- * @author huangrui
- * @email
- * @date 2021-08-24 16:05:16
- */
- @Data
- @Accessors(chain = true)
- @AllArgsConstructor
- @NoArgsConstructor
- @TableName("cost_allocation")
- public class Allocation implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- *
- */
- @TableId
- private Long id;
- /**
- * 年
- */
- private Integer dateYear;
- /**
- * 月
- */
- private Integer dateMonth;
- /**
- * 分摊层级序号
- */
- private Integer levelSort;
- /**
- * 分摊层级数名称
- */
- private String levelName;
- /**
- * 医院id
- */
- private Long hospId;
- /**
- * 责任中心代码
- */
- private String responsibilityCode;
- /**
- * 责任中心名称
- */
- private String responsibilityName;
- private Long accountShareId;
- /**
- * 分摊得到的钱
- */
- private BigDecimal amount;
- /**
- * 是否固定成本 0.不是,1.是
- */
- private Integer isBaseCost;
- /**
- *
- */
- private Long createTime;
- private String targetResponsibilityCode;
- private String targetResponsibilityName;
- private String shareParamCode;
- private String shareParamName;
- private BigDecimal shareParamValueNum;
- private BigDecimal totalAmount;
- private BigDecimal shareParamRate;
- /**
- *
- */
- @TableLogic(value = "0",delval = "UNIX_TIMESTAMP(NOW()) * 1000")
- private Long deleteTime;
- }
|