AchievementDemandCountMapper.java 541 B

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