Commit 48904cb7 by 陶光胜

联合商户查询修改

parent 3760fa36
......@@ -19,6 +19,7 @@ import com.gic.enterprise.utils.UserDetailUtils;
import com.gic.store.dto.StoreWidgetDTO;
import com.gic.store.service.StoreWidgetApiService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
......@@ -34,7 +35,7 @@ public class UnionEnterpriseController {
private StoreWidgetApiService storeWidgetApiService;
@RequestMapping("save-union-enterprise")
public RestResponse saveUnionEnterprise(UnionEnterpriseQO unionEnterpriseQO){
public RestResponse saveUnionEnterprise(@RequestBody UnionEnterpriseQO unionEnterpriseQO){
RestResponse validateResult = this.validateAuthCode(unionEnterpriseQO);
if(validateResult != null){
return validateResult;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment