Commit b6f4a3c7 by 陶光胜

门店列表展示字段配置

parent 571ed5d7
......@@ -127,12 +127,14 @@ public class StoreController {
List<StoreDictDTO> storeDictDTOList = serviceResponse.getResult();
if(CollectionUtils.isNotEmpty(storeDictDTOList)){
for(StoreDictDTO storeDictDTO : storeDictDTOList){
StoreListSourceVO vo = new StoreListSourceVO();
vo.setChecked(0);
vo.setIsCustom(1);
vo.setKey(storeDictDTO.getKey());
vo.setValue(storeDictDTO.getValue());
list.add(vo);
if(storeDictDTO.getChecked() == 1){
StoreListSourceVO vo = new StoreListSourceVO();
vo.setChecked(0);
vo.setIsCustom(1);
vo.setKey(storeDictDTO.getKey());
vo.setValue(storeDictDTO.getValue());
list.add(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