package com.ydtech.modules.admin.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ydtech.modules.admin.model.SysDept; import org.apache.ibatis.annotations.Param; import java.util.List; public interface SysDeptMapper extends BaseMapper { String getMaxId(@Param(value = "deptId") String deptId); /** * @version * @author: hxl * @Date: 2024/4/28 10:01 * @Description: 通过县级code查询门店列表 */ List queryListByParentId(@Param(value = "level") String level,@Param(value = "parentId") String parentId); /** * @version * @author: hxl * @Date: 2024/6/26 19:55 * @Description: 获取前线机构列表 */ List queryListByQXDept(); }