| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package com.kcim.vo;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- /**
- * @author 李加喜
- * @Package com.imed.costaccount.model.vo
- * @date 2021-08-09 13:35
- */
- @Data
- @ApiModel("诊次/床日分页查询实体类")
- public class CostNumberBedSetVO {
- @ApiModelProperty(name = "id",value = "诊次/床日设置的Id")
- private Long id;
- @ApiModelProperty(name = "allocation",value = "分配方式 1按照收入比例分配 2 按照固定比例分配")
- private Integer allocation;
- @ApiModelProperty(name = "incomeType",value = "收入方式 1 门诊方式 2 住院方式")
- private Integer incomeType;
- @ApiModelProperty(name = "shareParamCode",value = "成本分摊参数代码")
- private String shareParamCode;
- @ApiModelProperty(name = "shareParamName",value = "成本分摊参数名称")
- private String shareParamName;
- @ApiModelProperty(name = "incomeFieldNum",value = "收入字段 对应报表的编号")
- private Integer incomeFieldNum;
- @ApiModelProperty(name = "incomeFileName",value = "收入字段名称")
- private String incomeFileName;
- @ApiModelProperty(name = "costCorresponding",value = "成本对应 对应的是报表项目的编号")
- private Integer costCorresponding;
- @ApiModelProperty(name = "costCorrespondingName",value = "成本对应名称")
- private String costCorrespondingName;
- /**
- * 收入报表类型
- */
- private Integer incomeFileType;
- /**
- * 成本对饮报表类型
- */
- private Integer costFileType;
- }
|