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 { List selectDistrictInfo(String type, String parentcode); DistrictInfo selectInfoByName(String name, Byte type); DistrictInfo selectInfoByCode(String code, Byte type); List selectDistrictByName(String type, String parentname, String parenttype); List selectInfoByParentCode(String s); List selectInfoByParentCodeAndCity(String s, Object city); }