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 fieldsExpr;//字段值是密文,传过来需要解密 public Map getFieldsExpr() { return fieldsExpr; } public void setFieldsExpr(Map 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; } }