ContactsMapper.java 680 B

1234567891011121314151617181920212223242526
  1. package com.fjhx.oa.mapper.contacts;
  2. import com.fjhx.oa.entity.contacts.po.Contacts;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  5. import com.fjhx.oa.entity.contacts.vo.ContactsVo;
  6. import com.ruoyi.common.utils.wrapper.IWrapper;
  7. import org.apache.ibatis.annotations.Param;
  8. /**
  9. * <p>
  10. * 外部通讯录联系人 Mapper 接口
  11. * </p>
  12. *
  13. * @author
  14. * @since 2023-04-06
  15. */
  16. public interface ContactsMapper extends BaseMapper<Contacts> {
  17. /**
  18. * 外部通讯录联系人分页
  19. */
  20. Page<ContactsVo> getPage(@Param("page") Page<Object> page, @Param("ew") IWrapper<Contacts> wrapper);
  21. }