对比新文件 |
| | |
| | | package com.iailab.module.model.mcs.sche.vo; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | |
| | | /** |
| | | * @author Jay |
| | | */ |
| | | @Schema(description = "模型服务 - 调度建议创建/修改 Request VO") |
| | | @Data |
| | | public class StSuggestSnapshotConfDetReqVO { |
| | | |
| | | @Schema(description = "ID") |
| | | private String id; |
| | | |
| | | @Schema(description = "快照配置ID") |
| | | private String confId; |
| | | |
| | | @Schema(description = "数据类型(DATAPOINT,IND,PLAN,PREDICTITEM)") |
| | | private String dataType; |
| | | |
| | | @Schema(description = "数据名称") |
| | | private String dataName; |
| | | |
| | | @Schema(description = "数据编号") |
| | | private String dataNo; |
| | | |
| | | @Schema(description = "左侧长度(min)") |
| | | private Integer leftLength; |
| | | |
| | | @Schema(description = "右侧侧长度(min)") |
| | | private Integer rightLength; |
| | | |
| | | @Schema(description = "排序") |
| | | private Integer sort; |
| | | |
| | | @Schema(description = "拓展字段1") |
| | | private String ext1; |
| | | |
| | | @Schema(description = "拓展字段2") |
| | | private String ext2; |
| | | |
| | | @Schema(description = "拓展字段3") |
| | | private String ext3; |
| | | |
| | | @Schema(description = "拓展字段4") |
| | | private String ext4; |
| | | |
| | | @Schema(description = "拓展字段5") |
| | | private String ext5; |
| | | } |