package org.springblade.mdm.program.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Getter;
|
import lombok.Setter;
|
import org.springblade.mdm.commons.vo.BaseVO;
|
|
/**
|
* NC程序VO
|
*/
|
@Setter
|
@Getter
|
public class NcProgramVO extends BaseVO {
|
@Schema(description = "程序名称")
|
private String name;
|
@Schema(description = "设备编号")
|
private String machineCode;
|
|
@Schema(description = "描述")
|
private String description;
|
@Schema(description = "备注")
|
private String remark;
|
|
@Schema(description = "工序,如“精铣”")
|
private String processName;
|
|
@Schema(description = "工艺版次")
|
private String craftEdition;
|
|
@Schema(description = "零组件号/图号")
|
private String drawingNo;
|
@Schema(description = "零组件号/图号版次")
|
private String drawingNoEdition;
|
|
@Schema(description = "是否测试程序.1是;0否")
|
private Integer isTest;
|
@Schema(description = "版本号")
|
private Integer versionNumber;
|
}
|