You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
610 B
26 lines
610 B
package com.hai.service;
|
|
|
|
import com.hai.entity.HighGasChannelConfig;
|
|
import com.hai.enum_type.GasChannel;
|
|
import com.hai.enum_type.GasChannelPayPlatformType;
|
|
|
|
/**
|
|
* 加油站 渠道商配置
|
|
*/
|
|
public interface HighGasChannelConfigService {
|
|
|
|
/**
|
|
* 编辑配置
|
|
* @param gasChannelConfig
|
|
*/
|
|
void editConfig(HighGasChannelConfig gasChannelConfig);
|
|
|
|
/**
|
|
* 查询配置
|
|
* @param channelId 渠道id
|
|
* @param payPlatformType 支付平台类型
|
|
* @return
|
|
*/
|
|
HighGasChannelConfig getConfig(GasChannel channelId, GasChannelPayPlatformType payPlatformType);
|
|
|
|
}
|
|
|