15 lines
297 B
Java
15 lines
297 B
Java
|
|
package com.cdzy.operations.service;
|
||
|
|
|
||
|
|
import com.mybatisflex.core.service.IService;
|
||
|
|
import com.cdzy.operations.model.entity.EbikeBikeOrder;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 工单信息 服务层。
|
||
|
|
*
|
||
|
|
* @author attiya
|
||
|
|
* @since 2025-11-24
|
||
|
|
*/
|
||
|
|
public interface EbikeBikeOrderService extends IService<EbikeBikeOrder> {
|
||
|
|
|
||
|
|
}
|