package cn.iocoder.yudao.module.bi.controller.admin.decision.vo;
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
@Schema(description = "管理后台 - 负荷预测 Request VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
public class DecisionForecastReqVO extends PageParam {
|
|
@Schema(description = "预测编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "load_forecast_daily")
|
private String forecastCode;
|
|
@Schema(description = "维度", example = "region")
|
private String dimension;
|
|
@Schema(description = "维度值", example = "华东")
|
private String dimensionValue;
|
|
}
|