| 1234567891011121314151617 |
- package cn.com.lzt.report.dao;
- import java.util.List;
- import org.jeecgframework.minidao.annotation.MiniDao;
- import org.jeecgframework.minidao.annotation.Param;
- import org.springframework.stereotype.Repository;
- import cn.com.lzt.report.entity.KaoQinModifyEntity;
- @Repository
- @MiniDao
- public interface RptDao {
- public List<KaoQinModifyEntity> getKaoQinPaihangTime(@Param("month") String month);
- public List<KaoQinModifyEntity> getKaoQinPaihangCount(@Param("month") String month);
- public List<KaoQinModifyEntity> getKaoQinPaihangCountProject(@Param("month") String month,@Param("project") String project);
- public List<KaoQinModifyEntity> getKaoQinPaihangCountPerson(@Param("month") String month,@Param("depart") String depart);
- }
|