cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
package cn.ksource.core.dao;
 
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
 
public class SqlParameter implements Map {
 
    private Map source;
    
    
    public SqlParameter(){
        this.source = new HashMap();
    }
    
    public SqlParameter(Object key,Object value){
        this.source = new HashMap();
        this.source.put(key, value);
    }
    
    public Map getSource() {
        return source;
    }
 
    public SqlParameter setSource(Map source) {
        this.source = source;
        return this;
    }
 
    public void clear() {
        this.source.clear();
    }
 
    public boolean containsKey(Object key) {
        return this.source.containsKey(key);
    }
 
    public boolean containsValue(Object value) {
        return this.source.containsValue(value);
    }
 
    public Set entrySet() {
        return this.source.entrySet();
    }
 
    public Object get(Object key) {
        return this.source.get(key);
    }
    
 
    public boolean isEmpty() {
        return this.source.isEmpty();
    }
 
    public Set keySet() {
        return this.source.keySet();
    }
 
    /**
     * ʵ��tʽ������ֵ��Ϊ��map
     */
    public SqlParameter addValue(Object key, Object value) {
        this.source.put(key, value);
        return this;
    }
 
    public void putAll(Map m) {
        this.source.putAll(m);
    }
    /**
     * ʵ��tʽ������ֵ��δ��map
     */
    public SqlParameter remove(Object key) {
        this.source.remove(key);
        return this;
    }
    
 
    public int size() {
        return this.source.size();
    }
 
    public Collection values() {
        return this.source.values();
    }
 
    public SqlParameter put(Object key, Object value) {
        this.source.put(key, value);
        return this;
    }
}