yangys
2025-06-11 dc0fea5a5f163e6bfcf7cb887b741b13d86728c4
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
package org.springblade.mdm.program.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
 
import java.time.LocalDateTime;
 
@Setter
@Getter
@Schema(description = "DNC回传数据")
public class DncSendBackData {
    @Schema(description = "文件数据库编号")
    private Long id;
    @Schema(description = "程序编号")
    private String programNo;
    @Schema(description = "程序名称")
    private String programName;
 
    @Schema(description = "到达时间")
    private LocalDateTime fileBackTime;
    @Schema(description = "MD5值")
    private String md5;
 
}