DemandInterestMapper.java 513 B

12345678910111213141516171819
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.DemandInterest;
  3. public interface DemandInterestMapper {
  4. int deleteByPrimaryKey(String id);
  5. int insert(DemandInterest record);
  6. int insertSelective(DemandInterest record);
  7. DemandInterest selectByPrimaryKey(String id);
  8. int updateByPrimaryKeySelective(DemandInterest record);
  9. int updateByPrimaryKey(DemandInterest record);
  10. DemandInterest selectDemandInterestByUidAndDemandId(String uid, String id);
  11. }