liyong
8 天以前 1ab2b329a40decba8ff7eefbeb158ff259aceb6d
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.tm.tool.vo.type;
 
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 MesTmToolTypePageReqVO extends PageParam {
 
    @Schema(description = "类型编码", example = "TT-001")
    private String code;
 
    @Schema(description = "类型名称", example = "铣刀")
    private String name;
 
    @Schema(description = "保养维护类型", example = "1")
    private Integer maintenType;
 
}