first commit

This commit is contained in:
lijiazhuo
2025-08-22 14:36:10 +08:00
commit 6c5a040969
58 changed files with 34059 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package com.example.sso.dao;
import com.alibaba.fastjson.JSONObject;
import com.example.sso.util.FDaDaUtil;
public class GetUrl {
public static void main(String[] args) throws Exception {
JSONObject jsonObject = new JSONObject();
jsonObject.put("clientCorpId","i");
String jsonString = jsonObject.toJSONString();
String fddurl = FDaDaUtil.fddurl(jsonString);
System.out.println(fddurl);
}
}