PatentRegistrationService.java 595 B

123456789101112131415161718192021
  1. package com.goafanti.patent.service;
  2. import com.goafanti.common.model.PatentRegistration;
  3. import com.goafanti.core.mybatis.page.Pagination;
  4. import com.goafanti.patent.bo.PatentRecieveSendBo;
  5. public interface PatentRegistrationService {
  6. PatentRegistration insert(PatentRegistration patentRegistration);
  7. int updateByPrimaryKeySelective(PatentRegistration patentRegistration);
  8. Pagination<PatentRecieveSendBo> getRecieveSendList(Integer pNo, Integer pSize);
  9. int updateByPrimaryKey(PatentRegistration regBo2Reg);
  10. PatentRegistration selectByPrimaryKey(String rid);
  11. }