Commit c13d9230 authored by Junling Bu's avatar Junling Bu
Browse files

fix[litemall-wx-api]: 解决潜在的警告信息

parent 2d5b4e0f
......@@ -32,7 +32,7 @@ public class WxGrouponRuleService {
public List<GrouponRuleVo> queryList(Integer page, Integer size, String sort, String order) {
Page<LitemallGrouponRules> grouponRulesList = (Page)grouponRulesService.queryList(page, size, sort, order);
Page<LitemallGrouponRules> grouponRulesList = (Page<LitemallGrouponRules>)grouponRulesService.queryList(page, size, sort, order);
Page<GrouponRuleVo> grouponList = new Page<GrouponRuleVo>();
grouponList.setPages(grouponRulesList.getPages());
......
Supports Markdown
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