| | |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author lirm |
| | |
| | | public class PlanDataChartReqVO implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Schema(description = "图标编码") |
| | | @Schema(description = "图表编码") |
| | | private String chartCode; |
| | | |
| | | @Schema(description = "开始时间") |
| | |
| | | @Schema(description = "结束时间") |
| | | private String endTime; |
| | | |
| | | @Schema(description = "预测时间") |
| | | private String predictTime; |
| | | @Schema(description = "计划编码集合") |
| | | private List<String> planCodes; |
| | | |
| | | @Schema(description = "右侧长度") |
| | | private int lengthRight; |
| | | @Schema(description = "图表编码集合") |
| | | private List<String> planPreds; |
| | | } |