Commit c6d94ef4 by zhangchen

删除用户券历史

parent ac87abd2
...@@ -501,8 +501,8 @@ public class UserService extends BaseService { ...@@ -501,8 +501,8 @@ public class UserService extends BaseService {
/** /**
* 删除用户的抵用券 * 删除用户的抵用券
*/ */
public boolean deleteUserVoucher(String uid,Integer vid) { public boolean deleteUserVoucher(String uid,Integer vid,String loginUserName) {
Request<Integer> request = new Request<Integer>(uid, vid); Request<Integer> request = new Request<Integer>(uid, vid,loginUserName);
HttpEntity<Request<Integer>> entity = new HttpEntity<Request<Integer>>(request); HttpEntity<Request<Integer>> entity = new HttpEntity<Request<Integer>>(request);
Response<Boolean> response = super.exchange( Response<Boolean> response = super.exchange(
this.getServiceUri("uri.Voucher.deleteUserVoucher"), HttpMethod.POST, entity, this.getServiceUri("uri.Voucher.deleteUserVoucher"), HttpMethod.POST, entity,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment