master
kira 8 years ago
parent 000a66a10b
commit 39a6658b15

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

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

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

Loading…
Cancel
Save