yangys
2025-09-25 31ecdb8c700529a59dd762f0c47f0ed9c66d5092
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package org.springblade.mdm.machinefile.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 MachineAcceptedFileVO extends BaseVO {
    @Schema(description = "文件名称")
    private String name;
    @Schema(description = "机床编号/回传机床")
    private String machineCode;
    @Schema(description = "程序编号")
    private String code;
    @Schema(description = "程序状态")
    private String programStatus;
    @Schema(description = "文件到达时间")
    private Date fileCreateTime;
    @Schema(description = "导出时间")
    private Date exportTime;
    @Schema(description = "oss文件名")
    private String ossName;
 
}