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 getKaoQinPaihangTime(@Param("month") String month); public List getKaoQinPaihangCount(@Param("month") String month); public List getKaoQinPaihangCountProject(@Param("month") String month,@Param("project") String project); public List getKaoQinPaihangCountPerson(@Param("month") String month,@Param("depart") String depart); }