15 lines
306 B
Java
15 lines
306 B
Java
package com.cdzy.operations.mapper;
|
|
|
|
import com.mybatisflex.core.BaseMapper;
|
|
import com.cdzy.operations.model.entity.EbikeOperationUseConfig;
|
|
|
|
/**
|
|
* 映射层。
|
|
*
|
|
* @author attiya
|
|
* @since 2025-10-27
|
|
*/
|
|
public interface EbikeOperationUseConfigMapper extends BaseMapper<EbikeOperationUseConfig> {
|
|
|
|
}
|