15 lines
266 B
Java
Raw Normal View History

2025-10-31 17:02:53 +08:00
package com.cdzy.user.mapper;
import com.cdzy.user.model.entity.EbikeCmd;
import com.mybatisflex.core.BaseMapper;
/**
* 中控命令 映射层
*
2025-11-14 16:24:04 +08:00
* @author yanglei
* @since 2025-10-30 10:01
2025-10-31 17:02:53 +08:00
*/
public interface EbikeCmdMapper extends BaseMapper<EbikeCmd> {
}