|
|
@@ -1,5 +1,6 @@ |
|
|
|
package com.iformall.controller; |
|
|
|
|
|
|
|
import com.iformall.annotation.AuthIgnore; |
|
|
|
import com.iformall.common.ResultData; |
|
|
|
import com.iformall.domain.po.WxMallApply; |
|
|
|
import com.iformall.domain.po.WxMsgValidationcode; |
|
|
@@ -12,13 +13,14 @@ import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
@RestController |
|
|
|
@RequestMapping("wxMallApply") |
|
|
|
@RequestMapping("/api/wxMallApply") |
|
|
|
public class WxMallApplyController extends BaseController { |
|
|
|
private final Logger logger = LoggerFactory.getLogger(this.getClass()); |
|
|
|
|
|
|
|
@Autowired |
|
|
|
private WxMallApplyService wxMallApplyService; |
|
|
|
|
|
|
|
@AuthIgnore |
|
|
|
@PostMapping("add") |
|
|
|
public ResultData add(@RequestBody WxMallApply wxMallApply) { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxMallApplyController::add"); |
|
|
|