Commit 9c004b38 by fudahua

品牌名称

parent 0344c90f
...@@ -25,6 +25,7 @@ import org.apache.commons.lang3.StringUtils; ...@@ -25,6 +25,7 @@ import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired; 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.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
...@@ -182,7 +183,7 @@ public class PayController extends WebBaseController { ...@@ -182,7 +183,7 @@ public class PayController extends WebBaseController {
* @return * @return
*/ */
@RequestMapping("/store-list") @RequestMapping("/store-list")
public HaobanResponse storeList(StoreListQo qo) { public HaobanResponse storeList(@RequestBody StoreListQo qo) {
if (StringUtils.isBlank(qo.getEnterpriseId())){ if (StringUtils.isBlank(qo.getEnterpriseId())){
resultResponse(HaoBanErrCode.ERR_2); resultResponse(HaoBanErrCode.ERR_2);
} }
......
...@@ -18,7 +18,7 @@ public class StoreListQo extends BasePageInfo { ...@@ -18,7 +18,7 @@ public class StoreListQo extends BasePageInfo {
private String cityId; private String cityId;
private String countyId; private String countyId;
private Integer storeType; private Integer storeType;
private List<String> storeIdList;
private String storeId; private String storeId;
public String getStoreGroupId() { public String getStoreGroupId() {
......
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