郑永安
2023-06-19 2fcd97552d16718cc7997629fd637a73a5a4483f
src/main/java/com/gk/firework/Service/DistrictService.java
对比新文件
@@ -0,0 +1,21 @@
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);
}