ebike-plus/ebike-operations/src/main/java/com/cdzy/operations/service/EbikeDefaultBillingConfigurationService.java

21 lines
588 B
Java
Raw Normal View History

2025-10-23 10:14:41 +08:00
package com.cdzy.operations.service;
import com.cdzy.operations.model.vo.EbikeDefaultBillingConfigurationVo;
import com.mybatisflex.core.service.IService;
import com.cdzy.operations.model.entity.EbikeDefaultBillingConfiguration;
/**
* 服务层
*
* @author attiya
* @since 2025-10-23
*/
public interface EbikeDefaultBillingConfigurationService extends IService<EbikeDefaultBillingConfiguration> {
/**
* 保存运营区默认配置
* @param configurationVo 配置信息
*/
void defaultConfiguration(EbikeDefaultBillingConfigurationVo configurationVo);
}