package com.iailab.module.data.ind.category.vo; import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; import com.alibaba.excel.annotation.ExcelProperty; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import java.util.Date; /** * @author PanZhibao * @Description * @createTime 2024å¹´09月10æ—¥ */ @Schema(description = "æ•°æ®å¹³å° - æŒ‡æ ‡åˆ†ç±» Response VO") @Data @ExcelIgnoreUnannotated public class IndItemCategoryRespVO { @Schema(description = "æŒ‡æ ‡åˆ†ç±»ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") @ExcelProperty("æŒ‡æ ‡åˆ†ç±»ID") private String id; @Schema(description = "æ ‡ç¾", example = "") private String label; @Schema(description = "父ID", example = "") private String pid; @Schema(description = "排åº", example = "") private Integer sort; @Schema(description = "创建者", example = "") private String creator; @Schema(description = "创建时间", example = "") private Date createTime; @Schema(description = "更新者", example = "") private String updater; @Schema(description = "更新时间", example = "") private Date updateTime; }