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; }