package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.model.BisInspPlanMonth; import cn.com.goldenwater.dcproj.param.BisInspPlanMonthParam; import cn.com.goldenwater.core.persistence.CrudDao; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.Date; import java.util.List; @Repository public interface BisInspPlanMonthDao extends CrudDao { List getByTimeRange(@Param("checkMonth") Date checkMonth); }