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 = "管理后台 - KPI指标定义分页 Request VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
public class DecisionKpiDefinitionPageReqVO extends PageParam {
|
|
@Schema(description = "KPI名称", example = "供电量")
|
private String name;
|
|
@Schema(description = "分类", example = "power_supply")
|
private String category;
|
|
@Schema(description = "状态:0-禁用 1-启用", example = "1")
|
private Integer status;
|
|
}
|