在对公转账审核中 , 减少了对 user_info的调用
This commit is contained in:
parent
5359aa2e9c
commit
d0d951b016
@ -299,13 +299,10 @@ public class AccountRechargeServiceImpl extends DefaultBaseService implements IA
|
|||||||
/**
|
/**
|
||||||
* TODO-CBC : 金额 大于 10 的 , 短信通知客户已到账
|
* TODO-CBC : 金额 大于 10 的 , 短信通知客户已到账
|
||||||
*/
|
*/
|
||||||
Map<String, Object> query = new HashMap<>();
|
UserDTO userDTO = iUserBaseService.get( po.getAccountId() );
|
||||||
query.put("userId", po.getAccountId());
|
|
||||||
UserInfoDTO userInfoDTO = iUserInfoDao.get(query);
|
|
||||||
JSONArray phoneArray = new JSONArray();
|
JSONArray phoneArray = new JSONArray();
|
||||||
|
|
||||||
JSONObject obj = new JSONObject();
|
JSONObject obj = new JSONObject();
|
||||||
obj.put("phone", userInfoDTO.getUserUsername());
|
obj.put("phone", userDTO.getUserUsername());
|
||||||
phoneArray.add(obj);
|
phoneArray.add(obj);
|
||||||
|
|
||||||
LocalDate startDate = LocalDate.parse(po.getGmtCreate(), originalFormatter);
|
LocalDate startDate = LocalDate.parse(po.getGmtCreate(), originalFormatter);
|
||||||
|
Loading…
Reference in New Issue
Block a user