parent
cf805e51b8
commit
5d79371788
@ -0,0 +1,19 @@
|
|||||||
|
package au.com.royalpay.payment.manage.activities.monsettledelay.web;
|
||||||
|
|
||||||
|
import au.com.royalpay.payment.tools.CommonConsts;
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
import org.springframework.web.bind.annotation.ModelAttribute;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMethod;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
import org.springframework.web.servlet.ModelAndView;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/act/mondelay")
|
||||||
|
public class ActMonDelaySettleController {
|
||||||
|
@RequestMapping(value = "/desc", method = RequestMethod.GET)
|
||||||
|
public ModelAndView encourageLogs(@ModelAttribute(CommonConsts.WECHATINFO) JSONObject wxUser) {
|
||||||
|
ModelAndView mav = new ModelAndView("activity/");
|
||||||
|
return mav;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue