fs-danaus
2024-08-09 7204e3dff0490732e861ccd1338e3e3c31d768c6
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
package com.yc.utils;
 
import java.util.Map;
 
/**
 * 3类型窗体ajax取数据
 *
 * @author 邓文峰
 * 2010-4-12
 **/
public class ThreeJSON {
    private int formID;//功能号
    private String where;
    private String parm;//列名
    private int type;//
    private int qrCode = 0;//二维码扫描
    private String value;//值
    private String exp;//权限表达式
    private Map<String, String> fieldsExpr;//字段值是密文,传过来需要解密
 
    public Map<String, String> getFieldsExpr() {
        return fieldsExpr;
    }
 
    public void setFieldsExpr(Map<String, String> fieldsExpr) {
        this.fieldsExpr = fieldsExpr;
    }
 
    public int getQrCode() {
        return qrCode;
    }
 
    public void setQrCode(int qrCode) {
        this.qrCode = qrCode;
    }
 
    public String getExp() {
    return exp;
}
public void setExp(String exp) {
    this.exp = exp;
}
public String getValue() {
    return value;
}
public void setValue(String value) {
    this.value = value;
}
public int getType() {
    return type;
}
public void setType(int type) {
    this.type = type;
}
public String getWhere() {
    return where;
}
public void setWhere(String where) {
    this.where = where;
}
public int getFormID() {
    return formID;
}
public void setFormID(int formID) {
    this.formID = formID;
}
public String getParm() {
    return parm;
}
public void setParm(String parm) {
    this.parm = parm;
}
}