32 lines
772 B
Java
32 lines
772 B
Java
|
|
package com.cdzy.operations.service;
|
||
|
|
|
||
|
|
import com.cdzy.operations.model.dto.EbikeBikeConfigurationDto;
|
||
|
|
import com.cdzy.operations.model.entity.EbikeBikeConfiguration;
|
||
|
|
import com.mybatisflex.core.service.IService;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 车辆相关配置 服务层
|
||
|
|
*
|
||
|
|
* @author yanglei
|
||
|
|
* @since 2025-12-03 16:22
|
||
|
|
*/
|
||
|
|
|
||
|
|
public interface EbikeBikeConfigurationService extends IService<EbikeBikeConfiguration> {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 根据运营商id获取配置项(sql会自动拼接运营商id)
|
||
|
|
*
|
||
|
|
* @return 配置项
|
||
|
|
*/
|
||
|
|
List<EbikeBikeConfiguration> getConfigurationByOperationId();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 配置项保存
|
||
|
|
*
|
||
|
|
* @param configurationDto 配置项参数
|
||
|
|
*/
|
||
|
|
void saveConfiguration(EbikeBikeConfigurationDto configurationDto);
|
||
|
|
}
|