[测评系统]--测评系统核心代码库
linzhijie
2023-04-23 94c73409b82edbfeef2b2dc678526f09f9d28169
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 com.ots.project.tool.report.reportCalculation.response;
import com.ots.project.tool.report.reportCalculation.request.HolderInfo;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
import java.util.Map;
@Setter
@Getter
public class ReportAPIResult {
    private String code;
    private String message;
    
    private String signal;
    
    private HolderInfo info;
    
    private Map answerData;
    
    private Map data;
    
/*    private List<Table1> table1;
    private List<Table2> table2;
    private List<Table3> table3;
    private List<Table4> table4;*/
}