6 天以前 85156554438bb13930c89072ee0b7fa93192a7fe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
 
}