| 1234567891011121314151617181920212223242526272829303132333435363738 |
- 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();
- /**
- * @version
- * @author: hxl
- * @Date: 2024/6/28 9:24
- * @Description:
- */
- List<SysDept> queryHXDeptTree();
- }
|