ExchangeAccountDao.java 780 B

12345678910111213141516171819202122232425262728
  1. package cn.com.lzt.exchangeaccount.dao;
  2. import cn.com.lzt.arrangeduty.dto.ProjectDepartDto;
  3. import cn.com.lzt.exchangeaccount.dto.ExchangeAccountDto;
  4. import org.jeecgframework.minidao.annotation.Arguments;
  5. import org.jeecgframework.minidao.annotation.MiniDao;
  6. import org.jeecgframework.minidao.annotation.ResultType;
  7. import org.jeecgframework.minidao.pojo.MiniDaoPage;
  8. import org.jeecgframework.web.system.pojo.base.TSDepart;
  9. import org.jeecgframework.web.system.pojo.base.TSUser;
  10. import java.util.List;
  11. /**
  12. *
  13. *
  14. */
  15. @MiniDao
  16. public interface ExchangeAccountDao {
  17. /**
  18. * 查询调休账户
  19. */
  20. @Arguments({"dto","page", "rows"})
  21. @ResultType(ExchangeAccountDto.class)
  22. public MiniDaoPage<ExchangeAccountDto> getAccountList(ExchangeAccountDto dto,int page, int rows);
  23. }