wuxw
2022-10-19 ad7623b1e809e821f2a83f090a4e1ea6e2837add
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
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;
 
    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;
    }
}