添加汇付支付
This commit is contained in:
@@ -185,6 +185,8 @@ public class AgencyService {
|
|||||||
JSONObject object=new JSONObject();
|
JSONObject object=new JSONObject();
|
||||||
object.put("invite",inviteCode);
|
object.put("invite",inviteCode);
|
||||||
object.put("mobile",agencyReq.getPhone());
|
object.put("mobile",agencyReq.getPhone());
|
||||||
|
object.put("loginName",agencyReq.getAngencyCode());
|
||||||
|
object.put("password",agencyReq.getPassowrd());
|
||||||
object.put("rate",agencyReq.getFee());
|
object.put("rate",agencyReq.getFee());
|
||||||
object.put("sign",MD5Util.md5(agencyReq.getPhone().concat(inviteCode).concat("2580")));
|
object.put("sign",MD5Util.md5(agencyReq.getPhone().concat(inviteCode).concat("2580")));
|
||||||
HttpEntity<String> body = new HttpEntity<String>(object.toString());
|
HttpEntity<String> body = new HttpEntity<String>(object.toString());
|
||||||
|
|||||||
@@ -38,4 +38,6 @@ public interface TbPlussUserInfoMapper {
|
|||||||
|
|
||||||
List<Map<String,Object>> selectOrderByMonth(@Param("userId") String userId, @Param("year") String year);
|
List<Map<String,Object>> selectOrderByMonth(@Param("userId") String userId, @Param("year") String year);
|
||||||
|
|
||||||
|
TbPlussUserInfo selectByPhone(String phone);
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -643,4 +643,8 @@
|
|||||||
) k ON d.a = k.createDate
|
) k ON d.a = k.createDate
|
||||||
|
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<select id="selectByPhone" resultMap="BaseResultMap">
|
||||||
|
select * from tb_pluss_user_info where phone =#{phone}
|
||||||
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
Reference in New Issue
Block a user