@ -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();
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)
return retailAppService.getStyle();