15 lines
266 B
Java
15 lines
266 B
Java
package com.cdzy.user.mapper;
|
|
|
|
import com.cdzy.user.model.entity.EbikeCmd;
|
|
import com.mybatisflex.core.BaseMapper;
|
|
|
|
/**
|
|
* 中控命令 映射层
|
|
*
|
|
* @author yanglei
|
|
* @since 2025-10-30 10:01
|
|
*/
|
|
|
|
public interface EbikeCmdMapper extends BaseMapper<EbikeCmd> {
|
|
}
|