PatentNewService.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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(PatentNewBo p);
  11. Pagination<PatentNewBo> selectPatentNew(PatentNewBo p,Integer pageSize, Integer pageNo);
  12. List<PatentNewBo> AllselectStartPatentNew();
  13. int addPatenNewLog(PatentNewLog pl);
  14. List<PatentNew> AllselectEndPatentNew();
  15. void insertLogBatch(List<PatentNewLog> logList2);
  16. List<PatentNewLog> selectPatentNewLog(Integer id);
  17. Object export(PatentNewBo p, Integer pageSize, Integer pageNo);
  18. void pushImportTemplate(MultipartFile file);
  19. Object pushPatentPaymentDetails(Integer id);
  20. Object updateBatch(String ids, Integer type,String aid);
  21. void updateBatchStatusByid(List<String> l2, Integer status);
  22. void pushResetPatentNew(List<String> list);
  23. boolean checkTid(Integer tid);
  24. }