| | |
| | | @ExcelProperty("检测项名称") |
| | | private String name; |
| | | |
| | | @Schema(description = "父指标编号(0=顶级)", example = "0") |
| | | private Long parentId; |
| | | |
| | | @Schema(description = "父指标名称", example = "水分") |
| | | private String parentName; |
| | | |
| | | @Schema(description = "条目类型:1=录入项,2=分组项", example = "1") |
| | | private Integer itemType; |
| | | |
| | | @Schema(description = "公式展示文本(打印报告用)", example = "w3=c1v1*0.06005/pv*100%") |
| | | private String formulaText; |
| | | |
| | | @Schema(description = "单位文本(打印展示用)", example = "kg/m³") |
| | | private String unitText; |
| | | |
| | | @Schema(description = "同级排序号", example = "10") |
| | | private Integer sortOrder; |
| | | |
| | | @Schema(description = "检测项类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | @ExcelProperty(value = "检测项类型", converter = DictConvert.class) |
| | | @DictFormat(DictTypeConstants.MES_INDICATOR_TYPE) |