package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.model.BisInspPlanMonth; import cn.com.goldenwater.dcproj.param.BisInspPlanMonthParam; import com.github.pagehelper.PageInfo; import org.springframework.web.multipart.MultipartFile; import javax.servlet.http.HttpServletResponse; import java.util.List; public interface BisInspPlanMonthService extends CrudService { /** * 改成不分页查询 * @param param * @return */ List getPageInfo(BisInspPlanMonthParam param); void export(BisInspPlanMonthParam param, HttpServletResponse response) throws Exception; List importExcel(MultipartFile file, String persId, String addvcd) throws Exception; BisInspPlanMonth getOne(String id); }