| 12345678910111213141516171819202122 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.PatentRegistration;
- import com.goafanti.core.mybatis.page.Pagination;
- import com.goafanti.techservice.patent.bo.PatentRecieveSendBo;
- public interface PatentRegistrationMapper {
- int deleteByPrimaryKey(String id);
- int insert(PatentRegistration record);
- int insertSelective(PatentRegistration record);
- PatentRegistration selectByPrimaryKey(String id);
- int updateByPrimaryKeySelective(PatentRegistration record);
- int updateByPrimaryKey(PatentRegistration record);
- Pagination<PatentRecieveSendBo> getRecieveSendList(Integer pNo, Integer pSize);
- }
|