master
kira 6 years ago
parent 000a66a10b
commit 39a6658b15

@ -163,4 +163,6 @@ public interface RetailAppService {
JSONObject getCouponCusCouponLog(String client_moniker, AppQueryBean appQueryBean);
void saveCouponAccuessLog(int client_id, String coupon_id);
JSONObject getStyle();
}

@ -498,6 +498,11 @@ public class RetailAppServiceImp implements RetailAppService {
couponAccuessLogMapper.save(couponAccuessLog);
}
@Override
public JSONObject getStyle() {
return royalPayCMSSupport.getStyle();
}
@Override
public void updateClient(JSONObject device, AppClientBean appClientBean) {
String clientType = device.getString("client_type");

@ -574,4 +574,9 @@ public class RetailAppController {
retailAppService.saveCouponAccuessLog(client_id, coupon_id);
}
@RequestMapping(value = "/style", method = RequestMethod.GET)
public JSONObject getStyle() {
return retailAppService.getStyle();
}
}

Loading…
Cancel
Save