Commit 8d294c5e by 陶光胜

观云台小程序

parent 78fd2d0d
......@@ -315,6 +315,8 @@ public class StoreWidgetController {
storeSearchVo.setId(dto.getId().toString());
storeSearchVo.setName(dto.getName());
storeSearchVo.setDesc(StoreChannelEnum.GICMALL.getMessage());
storeSearchVo.setNameChain(StoreChannelEnum.GICMALL.getMessage());
storeSearchVo.setChannel(StoreChannelEnum.GICMALL.getChannel());
list.add(storeSearchVo);
}
}
......@@ -329,6 +331,8 @@ public class StoreWidgetController {
storeSearchVo.setId(wmStoreDTO.getWmStoreId());
storeSearchVo.setName(wmStoreDTO.getWmMainAccount());
storeSearchVo.setDesc(StoreChannelEnum.WMMALL.getMessage());
storeSearchVo.setNameChain(StoreChannelEnum.GICMALL.getMessage());
storeSearchVo.setChannel(StoreChannelEnum.GICMALL.getChannel());
list.add(storeSearchVo);
}
}
......
......@@ -6,6 +6,7 @@ public class StoreSearchVo {
private String desc;
private String idChain;
private String nameChain;
private Integer channel;
public String getId() {
return id;
......@@ -46,4 +47,12 @@ public class StoreSearchVo {
public void setNameChain(String nameChain) {
this.nameChain = nameChain;
}
public Integer getChannel() {
return channel;
}
public void setChannel(Integer channel) {
this.channel = channel;
}
}
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