package com.iailab.module.data.ind.item.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月11æ—¥ */ @Schema(description = "æ•°æ®å¹³å° - æŒ‡æ ‡é¡¹ Response VO") @Data @ExcelIgnoreUnannotated public class IndItemRespVO { @Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") @ExcelProperty("ID") private String id; @Schema(description = "æŒ‡æ ‡ç¼–ç ", example = "") private String itemNo; @Schema(description = "æŒ‡æ ‡å称", example = "") private String itemName; @Schema(description = "æŒ‡æ ‡ç±»åž‹", example = "") private String itemType; @Schema(description = "æŒ‡æ ‡åˆ†ç±»", example = "") private String itemCategory; @Schema(description = "æŒ‡æ ‡åˆ†ç±»", example = "") private String itemCategoryName; @Schema(description = "转æ¢ç³»æ•°", example = "") private String coefficient; @Schema(description = "æŒ‡æ ‡ç²¾åº¦", example = "") private Integer precision; @Schema(description = "时间粒度", example = "") private String timeGranularity; @Schema(description = "æ•°é‡å•ä½", example = "") private String unit; @Schema(description = "备注", example = "") private String remark; @Schema(description = "状æ€", example = "") private Integer status; @Schema(description = "å›ºåŒ–æ ‡è¯†", example = "") private String solidifyFlag; @Schema(description = "创建者", example = "") private String creator; @Schema(description = "创建时间", example = "") private Date createTime; @Schema(description = "更新者", example = "") private String updater; @Schema(description = "更新时间", example = "") private Date updateTime; private String atomItemId; private IndItemAtomVO atomItem; private IndItemDerVO derItem; private IndItemCalVO calItem; }