|
@@ -13,33 +13,39 @@ import java.util.List;
|
|
|
@NoArgsConstructor
|
|
|
@Builder
|
|
|
@ApiModel("责任中心列表视图对象")
|
|
|
-public class CostResponsibilityVO{
|
|
|
+public class CostResponsibilityVO {
|
|
|
|
|
|
- @ApiModelProperty(name = "id",value = "主键")
|
|
|
+ @ApiModelProperty(name = "id", value = "主键")
|
|
|
private Long id;
|
|
|
|
|
|
- @ApiModelProperty(name = "responsibilityName",value = "名称")
|
|
|
+ @ApiModelProperty(name = "responsibilityName", value = "名称")
|
|
|
private String responsibilityName;
|
|
|
|
|
|
- @ApiModelProperty(name = "responsibilityCode",value = "责任中心代码")
|
|
|
+ @ApiModelProperty(name = "responsibilityCode", value = "责任中心代码")
|
|
|
private String responsibilityCode;
|
|
|
|
|
|
- @ApiModelProperty(name = "responsibilityLevel",value = "责任级别(第一级为1,以此类推)")
|
|
|
+ @ApiModelProperty(name = "responsibilityLevel", value = "责任级别(第一级为1,以此类推)")
|
|
|
private Integer responsibilityLevel;
|
|
|
|
|
|
- @ApiModelProperty(name = "isGatherCenter",value = "是否汇总中心1.是,2.不是")
|
|
|
+ @ApiModelProperty(name = "isGatherCenter", value = "是否汇总中心1.是,2.不是")
|
|
|
private Integer isGatherCenter;
|
|
|
|
|
|
- @ApiModelProperty(name = "responsibilityType",value = "责任类型 1. 收费中心,2.成本(费用)中心")
|
|
|
+ @ApiModelProperty(name = "responsibilityType", value = "责任类型 1. 收费中心,2.成本(费用)中心")
|
|
|
private Integer responsibilityType;
|
|
|
|
|
|
- @ApiModelProperty(name = "shareLevel",value = "分摊级别 如果是顶层默认为0")
|
|
|
+ @ApiModelProperty(name = "shareId", value = "分摊层级Id")
|
|
|
+ /**
|
|
|
+ * 分摊级别的Id
|
|
|
+ */
|
|
|
+ private Long shareId;
|
|
|
+
|
|
|
+ @ApiModelProperty(name = "shareLevel", value = "分摊级别 如果是顶层默认为0")
|
|
|
private Integer shareLevel;
|
|
|
|
|
|
- @ApiModelProperty(name = "shareName",value = "分摊级别名称")
|
|
|
+ @ApiModelProperty(name = "shareName", value = "分摊级别名称")
|
|
|
private String shareName;
|
|
|
|
|
|
- @ApiModelProperty(name = "deptStatus",value = "责任中心状态,0.门诊,1.住院")
|
|
|
+ @ApiModelProperty(name = "deptStatus", value = "责任中心状态,0.门诊,1.住院")
|
|
|
private Integer isDefault;
|
|
|
|
|
|
private Long parentId;
|