SysDeptAccountWithdrawMapper.java 643 B

123456789101112131415
  1. package com.ydtech.modules.admin.dao;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  4. import com.ydtech.modules.admin.model.SysDeptAccountWithdraw;
  5. import com.ydtech.modules.admin.model.vo.SysDeptAccountWithdrawVo;
  6. import org.apache.ibatis.annotations.Mapper;
  7. import org.apache.ibatis.annotations.Param;
  8. @Mapper
  9. public interface SysDeptAccountWithdrawMapper extends BaseMapper<SysDeptAccountWithdraw> {
  10. Page<SysDeptAccountWithdraw> selectSysDeptAccountWithdraw(Page page,@Param("sysDeptAccountWithdrawVo") SysDeptAccountWithdrawVo sysDeptAccountWithdrawVo);
  11. }