| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.kcim.vo;
- import lombok.Data;
- import java.math.BigDecimal;
- /**
- * 医院科室成本分摊汇总表VO
- * @author Administrator
- */
- @Data
- public class HospitalVisitCostCompositionVO extends BaseDeptCostReportVO{
- /**
- * 成本项目代码
- */
- private String costCode;
- /**
- * 成本项目名称
- */
- private String costItem;
- /**
- * 成本项目类型
- */
- private String costType;
- /**
- * 每诊次医疗成本金额
- */
- private BigDecimal medicalCost;
- /**
- * 每诊次医疗全成本金额
- */
- private BigDecimal medicalFullCost;
- /**
- * 每诊次医院全成本金额
- */
- private BigDecimal hospitalFullCost;
- }
|