19 lines
478 B
Java
19 lines
478 B
Java
package com.cdzy.operations.mapper;
|
|
|
|
import com.mybatisflex.core.BaseMapper;
|
|
import com.cdzy.operations.model.entity.EbikeSite;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
/**
|
|
* 映射层。
|
|
*
|
|
* @author attiya
|
|
* @since 2025-10-28
|
|
*/
|
|
public interface EbikeSiteMapper extends BaseMapper<EbikeSite> {
|
|
|
|
boolean checkBikeInParking(@RequestParam("bikeCode") String bikeCode);
|
|
|
|
boolean checkBikeInNoParking(@RequestParam("bikeCode") String bikeCode);
|
|
}
|