zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.changhong.epc.parsing.service.model;
 
import java.util.List;
import java.util.Map;
 
public class TableInfo {
 
    /**
     * 主数据配置字段(相当于表结构)
     */
    private List<Map<String, Object>> table;
    
    /**
     * 显示的头
     */
    private List<ShowTable> showTables;
    
    /**
     * 查询条件key
     */
    private String findKey;
    
    /**
     * 查询条件val
     */
    private String findVal;
    
    /**
     * 关联key
     */
    private String joinKey;
    
    /**
     * where条件
     */
    private String whereSql;
 
    public TableInfo() {
        super();
    }
 
    public TableInfo(List<Map<String, Object>> table, String findKey, String findVal) {
        super();
        this.table = table;
        this.findKey = findKey;
        this.findVal = findVal;
    }
 
    public List<ShowTable> getShowTables() {
        return showTables;
    }
 
    public void setShowTables(List<ShowTable> showTables) {
        this.showTables = showTables;
    }
 
    public String getJoinKey() {
        return joinKey;
    }
 
    public void setJoinKey(String joinKey) {
        this.joinKey = joinKey;
    }
 
    public List<Map<String, Object>> getTable() {
        return table;
    }
 
    public void setTable(List<Map<String, Object>> table) {
        this.table = table;
    }
 
    public String getFindKey() {
        return findKey;
    }
 
    public void setFindKey(String findKey) {
        this.findKey = findKey;
    }
 
    public String getFindVal() {
        return findVal;
    }
 
    public void setFindVal(String findVal) {
        this.findVal = findVal;
    }
 
    public String getWhereSql() {
        return whereSql;
    }
 
    public void setWhereSql(String whereSql) {
        this.whereSql = whereSql;
    }
    
}