2025-12-03 16:41:46 +08:00
|
|
|
package com.cdzy.operations.service;
|
|
|
|
|
|
2025-12-03 17:08:48 +08:00
|
|
|
import com.cdzy.operations.model.dto.EbikeDispatchConfigurationDto;
|
|
|
|
|
import com.cdzy.operations.model.entity.EbikeDispatchConfiguration;
|
2025-12-03 16:41:46 +08:00
|
|
|
import com.mybatisflex.core.service.IService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 车辆相关配置 服务层
|
|
|
|
|
*
|
|
|
|
|
* @author yanglei
|
|
|
|
|
* @since 2025-12-03 16:22
|
|
|
|
|
*/
|
|
|
|
|
|
2025-12-03 17:08:48 +08:00
|
|
|
public interface EbikeDispatchConfigurationService extends IService<EbikeDispatchConfiguration> {
|
2025-12-03 16:41:46 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据运营商id获取配置项(sql会自动拼接运营商id)
|
|
|
|
|
*
|
|
|
|
|
* @return 配置项
|
|
|
|
|
*/
|
2025-12-04 08:58:31 +08:00
|
|
|
EbikeDispatchConfiguration getConfigurationByOperationId();
|
2025-12-03 16:41:46 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 配置项保存
|
|
|
|
|
*
|
|
|
|
|
* @param configurationDto 配置项参数
|
|
|
|
|
*/
|
2025-12-03 17:08:48 +08:00
|
|
|
void saveOrUpdateConfiguration(EbikeDispatchConfigurationDto configurationDto);
|
2025-12-03 16:41:46 +08:00
|
|
|
}
|