PatentNewService.java 883 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.goafanti.patent.service;
  2. import java.util.List;
  3. import org.springframework.web.multipart.MultipartFile;
  4. import com.goafanti.common.model.PatentNew;
  5. import com.goafanti.common.model.PatentNewLog;
  6. import com.goafanti.core.mybatis.page.Pagination;
  7. import com.goafanti.patent.bo.PatentNewBo;
  8. public interface PatentNewService {
  9. int addPatenNew(PatentNew p);
  10. int updatePatenNew(PatentNew p);
  11. Pagination<PatentNewBo> selectPatentNew(PatentNewBo p,Integer pageSize, Integer pageNo);
  12. List<PatentNew> AllselectStartPatentNew();
  13. int addPatenNewLog(PatentNewLog pl);
  14. List<PatentNew> AllselectEndPatentNew();
  15. void insertLogBatch(List<PatentNewLog> logList2);
  16. List<PatentNewLog> selectPatentNewLog(Integer id);
  17. void importTemplate(MultipartFile file);
  18. Object export(PatentNewBo p, Integer pageSize, Integer pageNo);
  19. }