| 12345678910111213141516171819 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.DemandInterest;
- public interface DemandInterestMapper {
- int deleteByPrimaryKey(String id);
- int insert(DemandInterest record);
- int insertSelective(DemandInterest record);
- DemandInterest selectByPrimaryKey(String id);
- int updateByPrimaryKeySelective(DemandInterest record);
- int updateByPrimaryKey(DemandInterest record);
- DemandInterest selectDemandInterestByUidAndDemandId(String uid, String id);
- }
|