package com.vci.ubcs.codeapply.object;
|
|
import com.vci.ubcs.code.vo.webserviceModel.coderule.CodeShowFieldConfigVO;
|
import com.vci.ubcs.code.vo.webserviceModel.coderule.CodeSrchCondConfigVO;
|
import lombok.Data;
|
|
import java.util.List;
|
|
@Data
|
public class CoderefersecSearchVO {
|
private List<CodeSrchCondConfigVO> codeSrchCondConfigVOS;
|
private List<CodeShowFieldConfigVO> codeShowFieldConfigVOS;
|
private String referTypeName;// wupin,
|
private String referType;//wupin,
|
private String textField;// name,
|
private String valueField;//oid,
|
private String type;// default,
|
private String url;// http://localhost:38000/api/ubcs-code/codeSyncUniversalController/queryClassifyRule,
|
private String backPath;// http://localhost:38000/api,
|
private String method;// POST,
|
private String height;// ,
|
private String useFormKey;
|
private String paramForFormKey;
|
private boolean isMuti;// false,
|
private String mapFields;// ,
|
private boolean isOpenGlobal;// true,
|
private boolean isPersistence;// false,
|
private int limit;// 15,
|
private String sortField;// ,
|
private String sortType;//private String "
|
|
private String parentFieldName;// private String PARENTCODECLASSIFYOIDprivate String ,
|
private String parentUsedField;// private String oidprivate String ,
|
private String parentValue;// private String \\IN(SELECT oid from PLATFORMBTM_CODECLASSIFY where id ='hesuanfenlei')private String ,
|
private String loadType;// private String allprivate String ,
|
private boolean onlyLeaf;// false,
|
|
@Override
|
public String toString() {
|
return "CoderefersecSearchVO{" +
|
"codeSrchCondConfigVOS=" + codeSrchCondConfigVOS +
|
", codeShowFieldConfigVOS=" + codeShowFieldConfigVOS +
|
", referTypeName='" + referTypeName + '\'' +
|
", referType='" + referType + '\'' +
|
", textField='" + textField + '\'' +
|
", valueField='" + valueField + '\'' +
|
", type='" + type + '\'' +
|
", url='" + url + '\'' +
|
", backPath='" + backPath + '\'' +
|
", method='" + method + '\'' +
|
", height='" + height + '\'' +
|
", useFormKey='" + useFormKey + '\'' +
|
", paramForFormKey='" + paramForFormKey + '\'' +
|
", isMuti=" + isMuti +
|
", mapFields='" + mapFields + '\'' +
|
", isOpenGlobal=" + isOpenGlobal +
|
", isPersistence=" + isPersistence +
|
", limit=" + limit +
|
", sortField='" + sortField + '\'' +
|
", sortType='" + sortType + '\'' +
|
", parentFieldName='" + parentFieldName + '\'' +
|
", parentUsedField='" + parentUsedField + '\'' +
|
", parentValue='" + parentValue + '\'' +
|
", loadType='" + loadType + '\'' +
|
", onlyLeaf=" + onlyLeaf +
|
'}';
|
}
|
}
|