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
package com.changhong.autoform.entity.sql;
 
import java.util.Map;
 
public abstract class Sql {
 
    private String tableName;
    
    private Map<String, Object> fields;
 
    public Sql(String tableName, Map<String, Object> fields) {
        super();
        this.tableName = tableName;
        this.fields = fields;
    }
 
    public String getTableName() {
        return tableName;
    }
 
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
 
    public Map<String, Object> getFields() {
        return fields;
    }
 
    public void setFields(Map<String, Object> fields) {
        this.fields = fields;
    }
    
    /**
     * 获得sql
     * @return
     */
    public abstract String getSql();
    
    /**
     * 获得参数
     * @return
     */
    public Object[] getParams() {
        return getFields().values().toArray();
    }
}