对比新文件 |
| | |
| | | package com.gk.firework.Service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gk.firework.Domain.DistrictInfo; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface DistrictService extends IService<DistrictInfo> { |
| | | |
| | | List<DistrictInfo> selectDistrictInfo(String type, String parentcode); |
| | | |
| | | DistrictInfo selectInfoByName(String name, Byte type); |
| | | |
| | | DistrictInfo selectInfoByCode(String code, Byte type); |
| | | |
| | | List<DistrictInfo> selectDistrictByName(String type, String parentname, String parenttype); |
| | | |
| | | List<DistrictInfo> selectInfoByParentCode(String s); |
| | | |
| | | List<DistrictInfo> selectInfoByParentCodeAndCity(String s, Object city); |
| | | } |