|
|
@@ -29,10 +29,9 @@ public class FinanceController {
|
|
|
@RequestMapping(value = "/loan")
|
|
|
public String loan(String jsonStr) {
|
|
|
JSONObject jsonObject = JSON.parseObject(jsonStr);
|
|
|
- User user = SystemSession.getUser();
|
|
|
- jsonObject.putAll(JSON.parseObject(JSON.toJSONString(user)));
|
|
|
String url = httpAddress.getLoanAddress();
|
|
|
if (null != SystemSession.getUser() && null != SystemSession.getUser().getDialectUID()) {
|
|
|
+ jsonObject.putAll(JSON.parseObject(JSON.toJSONString(SystemSession.getUser())));
|
|
|
url = url + "?UID=" + Long.parseLong(SystemSession.getUser().getDialectUID());
|
|
|
}
|
|
|
// try {
|