PatentRegistrationMapper.java 662 B

12345678910111213141516171819202122
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.PatentRegistration;
  3. import com.goafanti.core.mybatis.page.Pagination;
  4. import com.goafanti.techservice.patent.bo.PatentRecieveSendBo;
  5. public interface PatentRegistrationMapper {
  6. int deleteByPrimaryKey(String id);
  7. int insert(PatentRegistration record);
  8. int insertSelective(PatentRegistration record);
  9. PatentRegistration selectByPrimaryKey(String id);
  10. int updateByPrimaryKeySelective(PatentRegistration record);
  11. int updateByPrimaryKey(PatentRegistration record);
  12. Pagination<PatentRecieveSendBo> getRecieveSendList(Integer pNo, Integer pSize);
  13. }