luo
2023-09-27 a15cca9fecaa11f30358fb0b4b042fdf39553a07
cloud-server-management/src/main/java/com/dsh/guns/modular/system/service/IStoreService.java
@@ -1,8 +1,11 @@
package com.dsh.guns.modular.system.service;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.guns.modular.system.model.Dict;
import com.dsh.guns.modular.system.model.TStore;
import com.dsh.guns.modular.system.model.TStoreListVo;
import com.dsh.guns.modular.system.model.TTurn;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -23,6 +26,7 @@
     */
    List<Map<String, Object>> queryProvince(String cityCode);
    List<TStoreListVo> listAll(Page<TStoreListVo> page, String provinceCode, String cityCode, String name, String phone, String shopName);
    /**
     * 根据省编号获取所有市
@@ -30,4 +34,29 @@
     * @return
     */
    List<Map<String, Object>> queryCity(String provinceCode, String cityCode);
    List<Map<String, Object>> queryListOfpage(String provinceCode, String cityCode, Integer cityManagerId, String storeName, Page<Map<String, Object>> page);
    List<Map<String, Object>> listOne(Page<Map<String, Object>> page, Integer id);
    List<Map<String, Object>> typeChange(String name);
    List<Map<String, Object>> typeChangeOne(Integer id);
    void addConfigOne(String url, String name, Integer page,Integer type, String turnId, Integer sort);
    List<Map<String, Object>> listTwo(Page<Map<String, Object>> page);
    void delete1(Integer id);
    /**
     * 获取所有跳转页面
     * @return
     */
    List<TTurn> pageList();
    List<TTurn> getPage(List<Integer> ids);
}