|
@@ -136,10 +136,16 @@ public class DataService {
|
|
|
}
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
+ String IV = "0000000000000000";
|
|
|
Map <String,String> map = new HashMap<String,String>();
|
|
|
- map.put("institution_id", "47600001");
|
|
|
-// map.put("num", "10");
|
|
|
- postWithParameters(GET_EXAM_URL, map);
|
|
|
+ map.put("exam_status","3");
|
|
|
+ map.put("createAt", "2023-06-01 00:00:00,2023-06-15 12:00:00");
|
|
|
+ map.put("num", "30");
|
|
|
+ String aesEncryptStr = AESUtils.aesEncryptStr(JSON.toJSONString(map), "2c1db8e7eee65eeeebacb0afbec37096",IV);
|
|
|
+ Map <String,String> mapaes = new HashMap<String,String>();
|
|
|
+ map.put("data",aesEncryptStr);
|
|
|
+ System.out.println(aesEncryptStr);
|
|
|
+
|
|
|
}
|
|
|
|
|
|
}
|