mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 13:35:15 +08:00
新增 用户添加/取消收藏站点接口、用户查询收藏站点列表接口
This commit is contained in:
@@ -2,7 +2,10 @@ package com.jsowell.pile.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.jsowell.common.core.page.PageResponse;
|
||||
import com.jsowell.pile.domain.MemberStationRelation;
|
||||
import com.jsowell.pile.dto.CollectedStationDTO;
|
||||
import com.jsowell.pile.dto.QueryStationDTO;
|
||||
|
||||
/**
|
||||
* 会员与收藏的站点关系Service接口
|
||||
@@ -61,8 +64,15 @@ public interface MemberStationRelationService {
|
||||
|
||||
/**
|
||||
* 通过memberId查询站点idList
|
||||
* @param memberId
|
||||
* @param dto
|
||||
* @return
|
||||
*/
|
||||
public List<String> getStationIdListByMemberId(String memberId);
|
||||
public PageResponse getCollectedStationIdList(QueryStationDTO dto);
|
||||
|
||||
/**
|
||||
* 修改收藏站点状态
|
||||
* @param dto
|
||||
* @return
|
||||
*/
|
||||
int updateCollectedStation(CollectedStationDTO dto);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user