package com.iailab.module.data.ind.item.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;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年09月11日
|
*/
|
@Schema(description = "数据平台 - 指标项分页 Request VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
public class IndItemPageReqVO extends PageParam {
|
|
@Schema(description = "指标编码", example = "")
|
private String itemNo;
|
|
@Schema(description = "指标名称", example = "")
|
private String itemName;
|
|
@Schema(description = "指标类型", example = "")
|
private String itemType;
|
|
@Schema(description = "指标分类", example = "")
|
private String itemCategory;
|
}
|