| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dsh.guns.modular.system.model.TStore; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @date 2023/7/6 16:51 |
| | | */ |
| | | public interface StoreMapper extends BaseMapper<TStore> { |
| | | |
| | | |
| | | /** |
| | | * 获取所有省 |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> queryProvince(@Param("cityCode") String cityCode); |
| | | |
| | | |
| | | /** |
| | | * 根据省编号获取所有市 |
| | | * @param provinceCode |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> queryCity(@Param("provinceCode") String provinceCode, @Param("cityCode") String cityCode); |
| | | } |