| | |
| | | package org.springblade.mdm.machineback.vo; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | import org.springblade.mdm.commons.vo.BaseVO; |
| | | |
| | | import java.util.Date; |
| | | |
| | | @Schema(description = "机床回传文件") |
| | | @Setter |
| | | @Getter |
| | | public class MachineBackFileVO extends BaseVO { |
| | | private String filename; |
| | | @Schema(description = "文件名称") |
| | | private String name; |
| | | @Schema(description = "机床编号/回传机床") |
| | | private String machineCode; |
| | | @Schema(description = "程序名称/编号") |
| | | private String programName; |
| | | @Schema(description = "固化状态") |
| | | private Integer isCured; |
| | | @Schema(description = "文件到达时间") |
| | | private Date arrivedTime; |
| | | } |