com.base4j.mvc.sys.mapper.SysDictMapper Maven / Gradle / Ivy
package com.base4j.mvc.sys.mapper;
import com.base4j.mvc.sys.entity.SysDept;
import com.base4j.mvc.sys.entity.SysDict;
import com.base4j.mybatis.base.mapper.BaseMapper;
import com.base4j.mybatis.config.mybatis.annotations.AutoMapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import java.util.List;
@AutoMapper
public interface SysDictMapper extends BaseMapper {
List selectChildNumListByParentId(@Param("parentId") long parentId, @Param("code") String code);
List selectAllOrgs();
}