2025-03-18 15:55:34 +08:00
|
|
|
package com.jsowell.pile.service;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
import com.jsowell.pile.domain.MemberStationRelation;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 会员与收藏的站点关系Service接口
|
|
|
|
|
*
|
|
|
|
|
* @author jsowell
|
|
|
|
|
* @date 2025-03-18
|
|
|
|
|
*/
|
|
|
|
|
public interface MemberStationRelationService {
|
|
|
|
|
/**
|
|
|
|
|
* 查询会员与收藏的站点关系
|
|
|
|
|
*
|
|
|
|
|
* @param id 会员与收藏的站点关系主键
|
|
|
|
|
* @return 会员与收藏的站点关系
|
|
|
|
|
*/
|
|
|
|
|
public MemberStationRelation selectMemberStationRelationById(Integer id);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询会员与收藏的站点关系列表
|
|
|
|
|
*
|
|
|
|
|
* @param memberStationRelation 会员与收藏的站点关系
|
|
|
|
|
* @return 会员与收藏的站点关系集合
|
|
|
|
|
*/
|
|
|
|
|
public List<MemberStationRelation> selectMemberStationRelationList(MemberStationRelation memberStationRelation);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增会员与收藏的站点关系
|
|
|
|
|
*
|
|
|
|
|
* @param memberStationRelation 会员与收藏的站点关系
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int insertMemberStationRelation(MemberStationRelation memberStationRelation);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 修改会员与收藏的站点关系
|
|
|
|
|
*
|
|
|
|
|
* @param memberStationRelation 会员与收藏的站点关系
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int updateMemberStationRelation(MemberStationRelation memberStationRelation);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量删除会员与收藏的站点关系
|
|
|
|
|
*
|
|
|
|
|
* @param ids 需要删除的会员与收藏的站点关系主键集合
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int deleteMemberStationRelationByIds(Integer[] ids);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除会员与收藏的站点关系信息
|
|
|
|
|
*
|
|
|
|
|
* @param id 会员与收藏的站点关系主键
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int deleteMemberStationRelationById(Integer id);
|
2025-03-19 09:12:14 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 通过memberId查询站点idList
|
|
|
|
|
* @param memberId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public List<String> getStationIdListByMemberId(String memberId);
|
2025-03-18 15:55:34 +08:00
|
|
|
}
|