RptDao.java 735 B

1234567891011121314151617
  1. package cn.com.lzt.report.dao;
  2. import java.util.List;
  3. import org.jeecgframework.minidao.annotation.MiniDao;
  4. import org.jeecgframework.minidao.annotation.Param;
  5. import org.springframework.stereotype.Repository;
  6. import cn.com.lzt.report.entity.KaoQinModifyEntity;
  7. @Repository
  8. @MiniDao
  9. public interface RptDao {
  10. public List<KaoQinModifyEntity> getKaoQinPaihangTime(@Param("month") String month);
  11. public List<KaoQinModifyEntity> getKaoQinPaihangCount(@Param("month") String month);
  12. public List<KaoQinModifyEntity> getKaoQinPaihangCountProject(@Param("month") String month,@Param("project") String project);
  13. public List<KaoQinModifyEntity> getKaoQinPaihangCountPerson(@Param("month") String month,@Param("depart") String depart);
  14. }