2025-10-28 16:53:04 +08:00
|
|
|
package com.cdzy.operations.mapper;
|
|
|
|
|
|
|
|
|
|
import com.mybatisflex.core.BaseMapper;
|
|
|
|
|
import com.cdzy.operations.model.entity.EbikeSite;
|
2025-11-11 16:23:50 +08:00
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
2025-10-28 16:53:04 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 映射层。
|
|
|
|
|
*
|
|
|
|
|
* @author attiya
|
|
|
|
|
* @since 2025-10-28
|
|
|
|
|
*/
|
|
|
|
|
public interface EbikeSiteMapper extends BaseMapper<EbikeSite> {
|
|
|
|
|
|
2025-11-11 16:23:50 +08:00
|
|
|
boolean checkBikeInParking(@RequestParam("bikeCode") String bikeCode);
|
|
|
|
|
|
|
|
|
|
boolean checkBikeInNoParking(@RequestParam("bikeCode") String bikeCode);
|
2025-10-28 16:53:04 +08:00
|
|
|
}
|