chengf
2025-08-05 c4a333b83ba54bcadf2a6a2b34fe66ab88a6ba9d
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
package com.java110.dto.data;
 
import com.alibaba.fastjson.JSONObject;
 
import java.io.Serializable;
 
public class ImportDataDto implements Serializable {
 
    private String businessAdapt;
 
    private String logId;
 
    private String communityId;
 
 
    public String getBusinessAdapt() {
        return businessAdapt;
    }
 
    public void setBusinessAdapt(String businessAdapt) {
        this.businessAdapt = businessAdapt;
    }
 
    public String getLogId() {
        return logId;
    }
 
    public void setLogId(String logId) {
        this.logId = logId;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
}