SysDeptMapper.java 445 B

123456789101112131415
  1. package com.gis.mapper;
  2. import com.gis.domain.entity.SysDeptEntity;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import org.apache.ibatis.annotations.Select;
  5. import org.springframework.stereotype.Component;
  6. @Component
  7. @Mapper
  8. public interface SysDeptMapper extends IBaseMapper<SysDeptEntity, Long> {
  9. @Select(value = "select * from sys_dept where rec_status = 'A' AND dept_no = #{deptNo}")
  10. SysDeptEntity findByDeptNo(String deptNo);
  11. }