mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
69 lines
1.9 KiB
Java
69 lines
1.9 KiB
Java
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);
|
|
|
|
/**
|
|
* 通过memberId查询站点idList
|
|
* @param memberId
|
|
* @return
|
|
*/
|
|
public List<String> getStationIdListByMemberId(String memberId);
|
|
}
|