ludc
2023-09-08 be1abfb614840ba9f74b693b21fe0ca12bdf18ea
Source/UBCS/ubcs-codeApply/src/main/java/com/vci/rmip/code/client/codeapply/Apply410/CodeApplyFor410Dialog.java
@@ -31,7 +31,8 @@
   private Component parentComponet = null;
   private Map<String, String> attrNameAndValMap = new LinkedHashMap();//存储属性名称(包含内部名称和外部名称)和对应的值
   private String tokenUrl= ConfigUtils.getConfigValue("410.code.token.url","http://127.0.0.1:37000/ubcs-auth/oauth/token");
   private String[] fields;
   private String[] Values;
   /**
    * 存储分类的Map,key:分类名称,value:分类值
    */
@@ -49,6 +50,18 @@
   public CodeApplyFor410Dialog(JDialog dialog, String clsfName, String deptName) {
      this(dialog, "pdmUser", clsfName, deptName,new String[]{});
   }
   public CodeApplyFor410Dialog(Frame frame, String clsfName, String deptName,String[] fields,String[] values){
      this.setModal(true);
      parentComponet = frame;
      this.userName = userName;
      this.clsfName = clsfName;
      this.deptName = deptName;
      this.fields=fields;
      this.Values=values;
      //this.libName = libName;
      init();
   }
   public CodeApplyFor410Dialog(Frame frame, String userName, String clsfName, String deptName, String[] libName){
      super(frame, true);
      VCISwingUtil.setClientMainFrame(frame);