Commit 40f22548 by 徐高华

导购

parent 2b26ba0c
...@@ -1690,6 +1690,7 @@ public class WxStaffController extends WebBaseController { ...@@ -1690,6 +1690,7 @@ public class WxStaffController extends WebBaseController {
vo = new StoreListVO(); vo = new StoreListVO();
vo.setStoreId(dto.getStoreId()); vo.setStoreId(dto.getStoreId());
vo.setStoreName(dto.getStoreName()); vo.setStoreName(dto.getStoreName());
vo.setStoreName(dto.getStoreCode());
retList.add(vo); retList.add(vo);
} }
Page<StoreListVO> retPage = new Page<>(); Page<StoreListVO> retPage = new Page<>();
...@@ -1743,6 +1744,7 @@ public class WxStaffController extends WebBaseController { ...@@ -1743,6 +1744,7 @@ public class WxStaffController extends WebBaseController {
vo = new StoreListVO(); vo = new StoreListVO();
vo.setStoreId(dto.getStoreId()); vo.setStoreId(dto.getStoreId());
vo.setStoreName(dto.getStoreName()); vo.setStoreName(dto.getStoreName());
vo.setStoreName(dto.getStoreCode());
retList.add(vo); retList.add(vo);
} }
return RestResponse.successResult(retList); return RestResponse.successResult(retList);
......
...@@ -6,6 +6,7 @@ public class StoreListVO implements Serializable{ ...@@ -6,6 +6,7 @@ public class StoreListVO implements Serializable{
private String storeId ; private String storeId ;
private String storeName ; private String storeName ;
private String storeCode ;
public String getStoreId() { public String getStoreId() {
return storeId; return storeId;
} }
...@@ -18,5 +19,10 @@ public class StoreListVO implements Serializable{ ...@@ -18,5 +19,10 @@ public class StoreListVO implements Serializable{
public void setStoreName(String storeName) { public void setStoreName(String storeName) {
this.storeName = storeName; this.storeName = storeName;
} }
public String getStoreCode() {
return storeCode;
}
public void setStoreCode(String storeCode) {
this.storeCode = storeCode;
}
} }
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