package com.iailab.module.model.mcs.pre.vo;
|
|
import com.iailab.framework.common.pojo.PageParam;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.ToString;
|
|
/**
|
* @description:
|
* @author: dzd
|
* @date: 2025/4/8 14:35
|
**/
|
@Schema(description = "预测影响因素配置 - Page Request VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
public class MmPredictInfluenceFactorPageReqVO extends PageParam {
|
|
@Schema(description = "预测项名称")
|
private String outputName;
|
|
@Schema(description = "统计方式")
|
private String pattern;
|
}
|