mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 20:15:06 +08:00
将推送第三方平台改为可推送多个平台
This commit is contained in:
@@ -4,6 +4,7 @@ import java.util.List;
|
||||
|
||||
import com.jsowell.pile.domain.ThirdPartyStationRelation;
|
||||
import com.jsowell.pile.vo.base.ThirdPartyStationRelationVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
@@ -68,4 +69,20 @@ public interface ThirdPartyStationRelationMapper {
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteThirdPartyStationRelationByIds(Long[] ids);
|
||||
|
||||
|
||||
/**
|
||||
* 通过站点id查询该站点对接了哪些第三方平台
|
||||
* @param stationId
|
||||
* @return
|
||||
*/
|
||||
List<ThirdPartyStationRelationVO> getRelationInfoList(@Param("stationId") String stationId);
|
||||
|
||||
/**
|
||||
* 修改删除标识为1
|
||||
* @param stationId
|
||||
* @param type
|
||||
* @return
|
||||
*/
|
||||
int updateRelationDelFlag(@Param("stationId") String stationId, @Param("type") String type);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user