| 12345678910111213141516171819202122232425262728 |
- package cn.com.lzt.exchangeaccount.dao;
- import cn.com.lzt.arrangeduty.dto.ProjectDepartDto;
- import cn.com.lzt.exchangeaccount.dto.ExchangeAccountDto;
- import org.jeecgframework.minidao.annotation.Arguments;
- import org.jeecgframework.minidao.annotation.MiniDao;
- import org.jeecgframework.minidao.annotation.ResultType;
- import org.jeecgframework.minidao.pojo.MiniDaoPage;
- import org.jeecgframework.web.system.pojo.base.TSDepart;
- import org.jeecgframework.web.system.pojo.base.TSUser;
- import java.util.List;
- /**
- *
- *
- */
- @MiniDao
- public interface ExchangeAccountDao {
- /**
- * 查询调休账户
- */
- @Arguments({"dto","page", "rows"})
- @ResultType(ExchangeAccountDto.class)
- public MiniDaoPage<ExchangeAccountDto> getAccountList(ExchangeAccountDto dto,int page, int rows);
- }
|