yangys
2025-06-13 4308b53ee6f9028905a333d86861ab2735ad2166
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
39
40
41
42
43
44
45
46
47
package org.springblade.mdm.basesetting.machine.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import org.springblade.mdm.commons.vo.BaseVO;
 
@Setter
@Getter
public class MachineSaveVO extends BaseVO {
    @Schema(description = "机床编码")
    private String code;
    @Schema(description = "机床型号")
    private String name;
 
    @Schema(description = "所属机床组code,字典machine_group")
    private String machineGroupCode;
 
    @Schema(description = "机器规格,在业务字典配置(key=machine_spec)")
    private String machineSpec;
 
    @Schema(description = "操作员(文本录入)")
    private String operator;
 
    @Schema(description = "所属单位")
    private Long ownerDept;
 
    @Schema(description = "生产商")
    private String manufacturer;
 
    @Schema(description = "轮询时间")
    private Integer pollingHours;
 
    @Schema(description = "控制系统")
    private String controlSystem;
    /**
     * 程序下发目录
     */
    private String progSendDir;
    /**
     * ',
     */
    @Schema(description = "程序回传目录")
    private String progReceiveDir;
    @Schema(description = "备注")
    private String remark;
}