Your Name
2023-04-17 da3b5c72fa45bc26a9868c2b26e3efda14845179
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.java110.dto.data;
 
import com.alibaba.fastjson.JSONObject;
 
import java.io.Serializable;
 
public class ExportDataDto implements Serializable{
 
    private String businessAdapt;
 
    private JSONObject reqJson;
 
    private String fileName;
 
    private String downloadId;
 
 
    public String getBusinessAdapt() {
        return businessAdapt;
    }
 
    public void setBusinessAdapt(String businessAdapt) {
        this.businessAdapt = businessAdapt;
    }
 
    public JSONObject getReqJson() {
        return reqJson;
    }
 
    public void setReqJson(JSONObject reqJson) {
        this.reqJson = reqJson;
    }
 
    public String getFileName() {
        return fileName;
    }
 
    public void setFileName(String fileName) {
        this.fileName = fileName;
    }
 
    public String getDownloadId() {
        return downloadId;
    }
 
    public void setDownloadId(String downloadId) {
        this.downloadId = downloadId;
    }
}