package cn.iocoder.yudao.module.mes.controller.admin.pd.processparamtemplate.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 MesPdProcessParamTemplatePageReqVO extends PageParam {
|
|
@Schema(description = "模板编码", example = "PPT2024001")
|
private String templateCode;
|
|
@Schema(description = "模板名称", example = "注塑工艺参数模板")
|
private String templateName;
|
|
@Schema(description = "模板类型", example = "1")
|
private Integer templateType;
|
|
}
|