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 Integer programStatus;
|
@Schema(description = "文件到达时间")
|
private Date fileCreateTime;
|
@Schema(description = "导出时间")
|
private Date exportTime;
|
@Schema(description = "oss文件名")
|
private String ossName;
|
|
}
|