| 12345678910111213141516171819202122232425262728293031 |
- 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<SysDept> {
- String getMaxId(@Param(value = "deptId") String deptId);
- /**
- * @version
- * @author: hxl
- * @Date: 2024/4/28 10:01
- * @Description: 通过县级code查询门店列表
- */
- List<SysDept> queryListByParentId(@Param(value = "level") String level,@Param(value = "parentId") String parentId);
- /**
- * @version
- * @author: hxl
- * @Date: 2024/6/26 19:55
- * @Description: 获取前线机构列表
- */
- List<SysDept> queryListByQXDept();
- }
|