|
public YouzanCrmCustomerPointsIncreaseResult youzanCrmCustomerPointsIncrease(String mobile , Long points){
YZClient client = new DefaultYZClient(new Token(token)); //new Sign(appKey, appSecret)
YouzanCrmCustomerPointsIncreaseParams youzanCrmCustomerPointsIncreaseParams = new YouzanCrmCustomerPointsIncreaseParams();
youzanCrmCustomerPointsIncreaseParams.setMobile(mobile);
youzanCrmCustomerPointsIncreaseParams.setPoints(points);
YouzanCrmCustomerPointsIncrease youzanCrmCustomerPointsIncrease = new YouzanCrmCustomerPointsIncrease();
youzanCrmCustomerPointsIncrease.setAPIParams(youzanCrmCustomerPointsIncreaseParams);
YouzanCrmCustomerPointsIncreaseResult result = client.invoke(youzanCrmCustomerPointsIncrease);
return result;
}
这是我的代码。 |
|
|
|
|
|
|