| | |
| | | */ |
| | | @Setter |
| | | @Getter |
| | | public class NcProgramUploadVO extends BaseVO { |
| | | public class NcProgramUploadVO { |
| | | @Schema(description = "所属节点id") |
| | | private Long nodeId; |
| | | |
| | |
| | | @Schema(description = "设备编号") |
| | | private MultipartFile file; |
| | | |
| | | @Schema(description = "图号") |
| | | private String drawingNo; |
| | | |
| | | @Schema(description = "零组件号/图号") |
| | | private String partNo; |
| | | |
| | | @Schema(description = "工序,如“精铣”") |
| | | private String processName; |
| | | |
| | | @Schema(description = "文件分类,使用字典(node_file_type)") |
| | | private String category; |
| | | |
| | | @Schema(description = "工序版本") |
| | | private String processEdition; |
| | | |
| | | /** |
| | | * 是否测试程序。1是;0否 |
| | | */ |
| | | private Integer isTest; |
| | | } |