package com.goafanti.patent.service; import java.util.List; import org.springframework.web.multipart.MultipartFile; import com.goafanti.common.model.PatentNew; import com.goafanti.common.model.PatentNewLog; import com.goafanti.core.mybatis.page.Pagination; import com.goafanti.patent.bo.PatentNewBo; public interface PatentNewService { int addPatenNew(PatentNew p); int updatePatenNew(PatentNew p); Pagination selectPatentNew(PatentNewBo p,Integer pageSize, Integer pageNo); List AllselectStartPatentNew(); int addPatenNewLog(PatentNewLog pl); List AllselectEndPatentNew(); void insertLogBatch(List logList2); List selectPatentNewLog(Integer id); void importTemplate(MultipartFile file); Object export(PatentNewBo p, Integer pageSize, Integer pageNo); }