| | |
| | | package com.yeshi.fanli.dao.mybatis.activity; |
| | | |
| | | import com.yeshi.fanli.entity.bus.activity.RecommendActivityInviteInfo; |
| | | |
| | | public interface RecommendActivityInviteInfoMapper { |
| | | |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | int insert(RecommendActivityInviteInfo record); |
| | | |
| | | int insertSelective(RecommendActivityInviteInfo record); |
| | | |
| | | RecommendActivityInviteInfo selectByPrimaryKey(Long id); |
| | | |
| | | int updateByPrimaryKeySelective(RecommendActivityInviteInfo record); |
| | | |
| | | int updateByPrimaryKey(RecommendActivityInviteInfo record); |
| | | |
| | | // 通过活动ID获取邀请信息 |
| | | RecommendActivityInviteInfo selectByActivityId(Long activityId); |
| | | |
| | | package com.yeshi.fanli.dao.mybatis.activity;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.activity.RecommendActivityInviteInfo;
|
| | |
|
| | | public interface RecommendActivityInviteInfoMapper {
|
| | |
|
| | | int deleteByPrimaryKey(Long id);
|
| | |
|
| | | int insert(RecommendActivityInviteInfo record);
|
| | |
|
| | | int insertSelective(RecommendActivityInviteInfo record);
|
| | |
|
| | | RecommendActivityInviteInfo selectByPrimaryKey(Long id);
|
| | |
|
| | | int updateByPrimaryKeySelective(RecommendActivityInviteInfo record);
|
| | |
|
| | | int updateByPrimaryKey(RecommendActivityInviteInfo record);
|
| | |
|
| | | // 通过活动ID获取邀请信息
|
| | | RecommendActivityInviteInfo selectByActivityId(Long activityId);
|
| | |
|
| | | } |