package cn.iocoder.yudao.module.mes.controller.admin.pd.processparam.vo; import cn.iocoder.yudao.framework.common.pojo.PageParam; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.ToString; @Schema(description = "管理后台 - MES 工艺参数分页 Request VO") @Data @EqualsAndHashCode(callSuper = true) @ToString(callSuper = true) public class MesPdProcessParamPageReqVO extends PageParam { @Schema(description = "参数编码", example = "PP2024001") private String paramCode; @Schema(description = "参数名称", example = "温度") private String paramName; @Schema(description = "参数类型", example = "1") private Integer paramType; }