9 天以前 106aaa378126774a2547b6c0d559c62114579f4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package cn.iocoder.yudao.module.mes.controller.admin.dv.machinery.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;
 
import java.util.Set;
 
@Schema(description = "管理后台 - MES 设备台账分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class MesDvMachineryPageReqVO extends PageParam {
 
    @Schema(description = "设备编码", example = "EQ-001")
    private String code;
 
    @Schema(description = "设备名称", example = "CNC 加工中心")
    private String name;
 
    @Schema(description = "品牌", example = "西门子")
    private String brand;
 
    @Schema(description = "设备类型编号", example = "100")
    private Long machineryTypeId;
 
    @Schema(description = "设备类型编号列表(含子类型,由后端自动填充)", hidden = true)
    private Set<Long> machineryTypeIds;
 
    @Schema(description = "所属车间编号", example = "200")
    private Long workshopId;
 
    @Schema(description = "设备状态", example = "1")
    private Integer status;
 
}