| | |
| | | import cn.lili.modules.order.order.service.OrderPriceService; |
| | | import cn.lili.modules.order.order.service.OrderService; |
| | | import cn.lili.modules.store.entity.dos.Store; |
| | | import cn.lili.modules.store.entity.enums.StoreStatusEnum; |
| | | import cn.lili.modules.store.mapper.StoreMapper; |
| | | import cn.lili.utils.COSUtil; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | |
| | | List<Store> storeList = |
| | | new LambdaQueryChainWrapper<>(storeMapper) |
| | | .eq(Store::getDeleteFlag,Boolean.FALSE) |
| | | .eq(Store::getStoreDisable, StoreStatusEnum.OPEN.name()) |
| | | .list(); |
| | | List<SelectVO> selectVOS = new ArrayList<>(); |
| | | for (Store store : storeList){ |