| 12345678910111213141516171819202122232425262728293031323334353637 |
- 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<PatentNewBo> selectPatentNew(PatentNewBo p,Integer pageSize, Integer pageNo);
-
- List<PatentNew> AllselectStartPatentNew();
-
-
- int addPatenNewLog(PatentNewLog pl);
- List<PatentNew> AllselectEndPatentNew();
- void insertLogBatch(List<PatentNewLog> logList2);
- List<PatentNewLog> selectPatentNewLog(Integer id);
- void importTemplate(MultipartFile file);
- Object export(PatentNewBo p, Integer pageSize, Integer pageNo);
- }
|