| | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | import lombok.ToString; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @Setter |
| | | @Getter |
| | | @ToString |
| | | @Schema(description = "MDM导入数据") |
| | | public class MdmProgramImportVO { |
| | | @Schema(description = "文件数据库编号(数控程序的id)") |
| | | private Long id; |
| | | private String id; |
| | | |
| | | @Schema(description = "程序编号") |
| | | private String code; |
| | | @Schema(description = "程序名称") |
| | | private String name; |
| | | private String filename; |
| | | |
| | | @Schema(description = "文件地址") |
| | | private String fullPath; |
| | | |
| | | |
| | | |
| | | @Schema(description = "设备(机床)编码") |
| | | private String machineCode; |
| | | |
| | | @Schema(description = "图号") |
| | | private String drawingNo; |
| | | |
| | | |
| | | @Schema(description = "程序状态") |
| | | private String programStatus; |
| | | |
| | | @Schema(description = "发送目录") |
| | | private String sendPath; |
| | | |
| | | |
| | | private String md5; |
| | | |
| | | public List<String> files; |
| | | |
| | | } |