242 检验项目设置-》检验项目:费用套餐/下级医技类型字段两列无数据
This commit is contained in:
@@ -139,4 +139,18 @@ public class DiagnosisTreatmentDto {
|
||||
|
||||
/** 检验类型名称(用于前端 testType 字段) */
|
||||
private String testType;
|
||||
|
||||
/** 费用套餐ID(关联 inspection_basic_information) */
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long feePackageId;
|
||||
|
||||
/** 费用套餐名称(JOIN inspection_basic_information.package_name) */
|
||||
private String packageName;
|
||||
|
||||
/** 下级医技类型ID(关联 inspection_type 子类) */
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long subItemId;
|
||||
|
||||
/** 下级医技类型名称(JOIN inspection_type.name) */
|
||||
private String subItemName;
|
||||
}
|
||||
|
||||
@@ -129,7 +129,15 @@ public class DiagnosisTreatmentUpDto {
|
||||
/** 服务范围 */
|
||||
private String serviceRange;
|
||||
|
||||
/** 检验类型ID */
|
||||
/** 检验类型ID(关联 inspection_type 大类,parent_id 为空) */
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long inspectionTypeId;
|
||||
|
||||
/** 费用套餐ID(关联 inspection_basic_information) */
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long feePackageId;
|
||||
|
||||
/** 下级医技类型ID(关联 inspection_type 子类,parent_id 不为空) */
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long subItemId;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user