|
|
|
|
@ -55,17 +55,17 @@ public class OrganizationRespVO {
|
|
|
|
|
@Schema(description = "组织状态", example = "1")
|
|
|
|
|
@ExcelProperty(value = "组织状态", converter = DictConvert.class)
|
|
|
|
|
@DictFormat("mes_org_status") // TODO 代码优化:建议设置到对应的 DictTypeConstants 枚举类中
|
|
|
|
|
private Integer status;
|
|
|
|
|
private String status;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "组织等级")
|
|
|
|
|
@ExcelProperty(value = "组织等级", converter = DictConvert.class)
|
|
|
|
|
@DictFormat("mes_org_class") // TODO 代码优化:建议设置到对应的 DictTypeConstants 枚举类中
|
|
|
|
|
private Integer orgClass;
|
|
|
|
|
private String orgClass;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "组织类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
|
|
|
@Schema(description = "组织类型")
|
|
|
|
|
@ExcelProperty(value = "组织类型", converter = DictConvert.class)
|
|
|
|
|
@DictFormat("mes_org_type") // TODO 代码优化:建议设置到对应的 DictTypeConstants 枚举类中
|
|
|
|
|
private Integer orgType;
|
|
|
|
|
private String orgType;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
|
|
|
@ExcelProperty("创建时间")
|
|
|
|
|
|