| | |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | |
| | | @Schema(description = "模型平台 - MmItemOutput Response VO") |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | public class MmItemOutputRespVO { |
| | | public class MmItemOutputRespVO implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
| | | @ExcelProperty("ID") |
| | |
| | | @ExcelProperty("存放表ID") |
| | | private String resulttableid; |
| | | |
| | | @Schema(description = "输出结果") |
| | | @ExcelProperty("输出结果") |
| | | private String resultstr; |
| | | |
| | | @Schema(description = "数据点名称") |
| | | @ExcelProperty("数据点名称") |
| | | private String tagname; |
| | |
| | | @Schema(description = "排序(默认值1)") |
| | | @ExcelProperty("排序") |
| | | private BigDecimal outputorder; |
| | | |
| | | @Schema(description = "结果名称") |
| | | @ExcelProperty("结果名称") |
| | | private String resultName; |
| | | } |