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(PatentNewBo 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); Object export(PatentNewBo p, Integer pageSize, Integer pageNo); void pushImportTemplate(MultipartFile file); Object pushPatentPaymentDetails(Integer id); Object updateBatch(String ids, Integer type,String aid); void updateBatchStatusByid(List l2, Integer status); void pushResetPatentNew(List list); boolean checkTid(Integer tid); }