| | |
| | | package cc.mrbird.febs.server.hr.mapper; |
| | | |
| | | import cc.mrbird.febs.common.core.entity.system.DicItem; |
| | | import cc.mrbird.febs.server.hr.entity.EmpAccessory; |
| | | import com.baomidou.mybatisplus.core.conditions.Wrapper; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | |
| | | import org.apache.ibatis.annotations.Select; |
| | | |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | public interface EmpAccessoryMapper extends BaseMapper<EmpAccessory> { |
| | | |
| | | |
| | | @Select("${sql} ${ew.customSqlSegment}") |
| | | |
| | | IPage<Map<String,Object>> selectPageVo(Page<?> page, @Param(Constants.WRAPPER) Wrapper wrapper, @Param("sql") String sql); |
| | | |
| | | String getQuerySql(); |
| | | |
| | | List<DicItem> getDictType(@Param("type") String physicalexamtype); |
| | | } |