21 lines
471 B
Java
21 lines
471 B
Java
|
|
package com.cdzy.operations.service;
|
||
|
|
|
||
|
|
import com.cdzy.operations.model.vo.EbikeBikeQrVo;
|
||
|
|
import com.mybatisflex.core.service.IService;
|
||
|
|
import com.cdzy.operations.model.entity.EbikeBikeQr;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 服务层。
|
||
|
|
*
|
||
|
|
* @author attiya
|
||
|
|
* @since 2025-10-16
|
||
|
|
*/
|
||
|
|
public interface EbikeBikeQrService extends IService<EbikeBikeQr> {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 生成车辆二维码
|
||
|
|
* @param qrVo 生成二维码参数
|
||
|
|
*/
|
||
|
|
void addEbikeQr(EbikeBikeQrVo qrVo) throws Exception;
|
||
|
|
}
|