| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package com.goafanti.common.dao;
- import java.util.List;
- import java.util.Map;
- import com.goafanti.common.model.PatentInfo;
- import com.goafanti.patent.bo.PatentContractListBo;
- import com.goafanti.patent.bo.PatentExpireBO;
- import com.goafanti.patent.bo.PatentInfoDetailBo;
- import com.goafanti.patent.bo.PatentRecieveSendBo;
- public interface PatentInfoMapper {
- int deleteByPrimaryKey(String id);
- int insert(PatentInfo record);
- int insertSelective(PatentInfo record);
- PatentInfo selectByPrimaryKey(String id);
- int updateByPrimaryKeySelective(PatentInfo record);
- int updateByPrimaryKey(PatentInfo record);
-
- PatentInfo selectPatentInfoByUserId(String uid);
-
- List<PatentInfo> findClientApplyListByPage(Map<String, Object> params);
-
- int findClentApplyCount(Map<String, Object> params);
- List<PatentRecieveSendBo> getPatentRecieveSendList();
- int batchDeleteByPrimaryKey(List<String> id);
- PatentInfoDetailBo selectPatentInfoDetail(String id);
- List<PatentInfo> selectByPrimaryKeys(List<String> id);
- Integer countPatentDone(String uid);
- Integer countPatentUndone(String uid);
- List<PatentExpireBO> selectExpireRecord();
- List<PatentContractListBo> listContractPatentByContractId(String contractId);
- void batchInsert(List<PatentInfo> pi);
- int batchDeleteByContractId(List<String> id);
-
- }
|