mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
新增 会员与收藏站点相关实体类、service
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user