17 lines
396 B
Java
17 lines
396 B
Java
|
|
package com.cdzy.operations.service;
|
||
|
|
|
||
|
|
import com.cdzy.operations.model.vo.EbikeEcuInfoVo;
|
||
|
|
import com.mybatisflex.core.service.IService;
|
||
|
|
import com.cdzy.operations.model.entity.EbikeEcuInfo;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 中控基本信息 服务层。
|
||
|
|
*
|
||
|
|
* @author attiya
|
||
|
|
* @since 2025-09-15
|
||
|
|
*/
|
||
|
|
public interface EbikeEcuInfoService extends IService<EbikeEcuInfo> {
|
||
|
|
|
||
|
|
void saveEcu(EbikeEcuInfoVo ebikeEcuInfo);
|
||
|
|
}
|