| | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | |
| | |
| | | @Schema(description = "数据编号") |
| | | private String dataNo; |
| | | |
| | | @Schema(description = "数据名称") |
| | | private String dataName; |
| | | |
| | | @Schema(description = "调度时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date scheduleTime; |
| | |
| | | @Schema(description = "排序") |
| | | private Integer sort; |
| | | |
| | | @Schema(description = "上限") |
| | | private BigDecimal limitH; |
| | | |
| | | @Schema(description = "下限") |
| | | private BigDecimal limitL; |
| | | |
| | | } |