21 lines
448 B
Java
Raw Normal View History

package com.cdzy.operations.mapper;
import com.mybatisflex.core.BaseMapper;
import com.cdzy.operations.model.entity.EbikeRegion;
/**
* 运营区域表 映射层
*
* @author attiya
* @since 2025-10-22
*/
public interface EbikeRegionMapper extends BaseMapper<EbikeRegion> {
2025-11-10 16:25:04 +08:00
/**
* 检查车辆是否在运营区内
* @param bikeCode 车辆编号
* @return 结果
*/
boolean checkBikeInRegion(String bikeCode);
}