办学质量监测教学评价系统
ageer
2025-03-02 1385b165c9a62a486b4494ebb11320d3c1117a5e
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
package org.ruoyi.common.wechat.itchat4j.beans;
 
import java.util.List;
 
/**
 * @author WesleyOne
 * @create 2018/12/21
 */
@Deprecated
public class SyncKey {
 
    private Integer Count;
 
    private List<KV> List;
 
    public Integer getCount() {
        return Count;
    }
 
    public void setCount(Integer count) {
        Count = count;
    }
 
    public java.util.List<KV> getList() {
        return List;
    }
 
    public void setList(java.util.List<KV> list) {
        List = list;
    }
 
    class KV{
        private Integer Key;
        private Long Val;
 
        public Integer getKey() {
            return Key;
        }
 
        public void setKey(Integer key) {
            Key = key;
        }
 
        public Long getVal() {
            return Val;
        }
 
        public void setVal(Long val) {
            Val = val;
        }
    }
}