yangys
6 天以前 7551b1ae51da67627f7ed03276707127dfc9cdc6
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
30
package org.springblade.mdm.program.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
 
import java.time.LocalDateTime;
import java.util.List;
 
@Setter
@Getter
@Schema(description = "DNC回传数据")
public class DncSendBackData {
    @Schema(description = "文件数据库编号(数控程序的id)")
    private Long id;
 
    @Schema(description = "程序编号")
    private String programNo;
    @Schema(description = "程序名称")
    private String programName;
 
    @Schema(description = "到达时间")
    private LocalDateTime fileBackTime;
    @Schema(description = "MD5值")
    private String md5;
 
    @Schema(description = "子文件(用于可识别文件加的机器返回的程序)")
    private List<String> children;
    private boolean hasChildren;
}