mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 12:05:05 +08:00
station_setting_relation ----> thirdparty_station_relation
This commit is contained in:
@@ -2,8 +2,8 @@ package com.jsowell.pile.mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.jsowell.pile.domain.StationSettingRelation;
|
||||
import com.jsowell.pile.vo.base.StationSettingRelationVO;
|
||||
import com.jsowell.pile.domain.ThirdPartyStationRelation;
|
||||
import com.jsowell.pile.vo.base.ThirdPartyStationRelationVO;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
@@ -13,45 +13,45 @@ import org.springframework.stereotype.Component;
|
||||
* @date 2023-06-06
|
||||
*/
|
||||
@Component
|
||||
public interface StationSettingRelationMapper {
|
||||
public interface ThirdPartyStationRelationMapper {
|
||||
/**
|
||||
* 查询站点、第三方推送平台配置对应
|
||||
*
|
||||
* @param id 站点、第三方推送平台配置对应主键
|
||||
* @return 站点、第三方推送平台配置对应
|
||||
*/
|
||||
public StationSettingRelation selectStationSettingRelationById(Long id);
|
||||
public ThirdPartyStationRelation selectThirdPartyStationRelationById(Long id);
|
||||
|
||||
/**
|
||||
* 查询站点、第三方推送平台配置对应列表
|
||||
*
|
||||
* @param stationSettingRelation 站点、第三方推送平台配置对应
|
||||
* @param thirdPartyStationRelation 站点、第三方推送平台配置对应
|
||||
* @return 站点、第三方推送平台配置对应集合
|
||||
*/
|
||||
public List<StationSettingRelation> selectStationSettingRelationList(StationSettingRelation stationSettingRelation);
|
||||
public List<ThirdPartyStationRelation> selectThirdPartyStationRelationList(ThirdPartyStationRelation thirdPartyStationRelation);
|
||||
|
||||
/**
|
||||
* 查询站点、第三方推送平台配置
|
||||
* @param stationSettingRelation
|
||||
* @param thirdPartyStationRelation
|
||||
* @return
|
||||
*/
|
||||
StationSettingRelationVO selectRelationInfo(StationSettingRelation stationSettingRelation);
|
||||
ThirdPartyStationRelationVO selectRelationInfo(ThirdPartyStationRelation thirdPartyStationRelation);
|
||||
|
||||
/**
|
||||
* 新增站点、第三方推送平台配置对应
|
||||
*
|
||||
* @param stationSettingRelation 站点、第三方推送平台配置对应
|
||||
* @param thirdPartyStationRelation 站点、第三方推送平台配置对应
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertStationSettingRelation(StationSettingRelation stationSettingRelation);
|
||||
public int insertThirdPartyStationRelation(ThirdPartyStationRelation thirdPartyStationRelation);
|
||||
|
||||
/**
|
||||
* 修改站点、第三方推送平台配置对应
|
||||
*
|
||||
* @param stationSettingRelation 站点、第三方推送平台配置对应
|
||||
* @param thirdPartyStationRelation 站点、第三方推送平台配置对应
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateStationSettingRelation(StationSettingRelation stationSettingRelation);
|
||||
public int updateThirdPartyStationRelation(ThirdPartyStationRelation thirdPartyStationRelation);
|
||||
|
||||
/**
|
||||
* 删除站点、第三方推送平台配置对应
|
||||
@@ -59,7 +59,7 @@ public interface StationSettingRelationMapper {
|
||||
* @param id 站点、第三方推送平台配置对应主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteStationSettingRelationById(Long id);
|
||||
public int deleteThirdPartyStationRelationById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除站点、第三方推送平台配置对应
|
||||
@@ -67,5 +67,5 @@ public interface StationSettingRelationMapper {
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteStationSettingRelationByIds(Long[] ids);
|
||||
public int deleteThirdPartyStationRelationByIds(Long[] ids);
|
||||
}
|
||||
Reference in New Issue
Block a user