Commit e0a47ed3 by guojuxing

门店选择器value数据结构调整

parent 8e741e4c
......@@ -219,14 +219,14 @@ public class StoreController {
public RestResponse getStoreWidget(Integer storeWidgetId) throws ClassNotFoundException {
ServiceResponse<StoreWidgetDTO> response = this.storeWidgetApiService.getStoreWidget(storeWidgetId);
StoreWidgetVO storeWidgetVO = EntityUtil.changeEntityByJSON(StoreWidgetVO.class, response.getResult());
storeWidgetVO.setScreenBack(this.getScreenBack(storeWidgetVO.getSearchParam()));
// storeWidgetVO.setScreenBack(this.getScreenBack(storeWidgetVO.getSearchParam()));
return RestResponse.success(storeWidgetVO);
}
@RequestMapping("screen-back")
@ResponseBody
public Object screenBack(String param) throws ClassNotFoundException {
return RestResponse.success(this.getScreenBack(param));
return RestResponse.success();
}
@RequestMapping("get-user-store-resource")
......@@ -256,7 +256,7 @@ public class StoreController {
StoreResourceVO vo = EntityUtil.changeEntityNew(StoreResourceVO.class, storeWidgetDTO);
vo.setSearchJson(storeWidgetDTO.getSearchParam());
vo.setSceenBack(getScreenBack(storeWidgetDTO.getSearchParam()));
// vo.setSceenBack(getScreenBack(storeWidgetDTO.getSearchParam()));
return vo;
}
}
......
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