|
|
@ -15,36 +15,7 @@ import java.time.LocalDateTime; |
|
|
|
@Data |
|
|
|
@Builder |
|
|
|
@ToString(callSuper = true) |
|
|
|
public class TeamImportErrorVO { |
|
|
|
@ExcelProperty("代码") |
|
|
|
private String code; |
|
|
|
|
|
|
|
@ExcelProperty("名称") |
|
|
|
private String name; |
|
|
|
|
|
|
|
@ExcelProperty("描述") |
|
|
|
private String description; |
|
|
|
|
|
|
|
@ExcelProperty("成员") |
|
|
|
private String members; |
|
|
|
|
|
|
|
@ExcelProperty("生效时间") |
|
|
|
private LocalDateTime activeTime; |
|
|
|
|
|
|
|
@ExcelProperty("失效时间") |
|
|
|
private LocalDateTime expireTime; |
|
|
|
|
|
|
|
@ExcelProperty("备注") |
|
|
|
private String remark; |
|
|
|
|
|
|
|
@ExcelProperty("创建时间") |
|
|
|
private LocalDateTime createTime; |
|
|
|
|
|
|
|
@ExcelProperty("创建者ID") |
|
|
|
private String creator; |
|
|
|
|
|
|
|
@ExcelProperty("是否可用") |
|
|
|
private String available; |
|
|
|
public class TeamImportErrorVO extends TeamImportExcelVo{ |
|
|
|
|
|
|
|
@ExcelProperty(value = "导入状态", index = 0) |
|
|
|
private String importStatus; |
|
|
|