| | |
| | | import lombok.Setter; |
| | | import org.springblade.mdm.commons.vo.BaseVO; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 从工控网回传涉密网的导入文件历史 |
| | | */ |
| | | @Schema(description = "DNC回传文件") |
| | | @Setter |
| | | @Getter |
| | | public class DncBackFileVO extends BaseVO { |
| | | @Schema(description = "文件名称") |
| | | private String name; |
| | | @Schema(description = "机床编号/回传机床") |
| | | @Schema(description = "机床编号") |
| | | private String machineCode; |
| | | @Schema(description = "程序编号") |
| | | private String code; |
| | | @Schema(description = "固化状态") |
| | | private Integer isCured=0; |
| | | @Schema(description = "文件到达时间") |
| | | private Date arrivedTime; |
| | | |
| | | @Schema(description = "节点的流程实例id") |
| | | private String processInstanceId; |
| | | |
| | | @Schema(description = "流程是否被执行过一步以上") |
| | | private Boolean processExecuted; |
| | | } |