15 lines
301 B
Java
15 lines
301 B
Java
|
|
package com.cdzy.user.mapper;
|
||
|
|
|
||
|
|
import com.cdzy.user.model.entity.EbikeParamValue;
|
||
|
|
import com.mybatisflex.core.BaseMapper;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 中控命令参数取值 映射层
|
||
|
|
*
|
||
|
|
* @author: yanglei
|
||
|
|
* @since: 2025-10-30 10:31
|
||
|
|
*/
|
||
|
|
|
||
|
|
public interface EbikeParamValueMapper extends BaseMapper<EbikeParamValue> {
|
||
|
|
}
|