27 lines
579 B
Java
27 lines
579 B
Java
|
|
package com.cdzy.operations.service;
|
||
|
|
|
||
|
|
import com.cdzy.operations.model.vo.EbikeRegionVo;
|
||
|
|
import com.mybatisflex.core.service.IService;
|
||
|
|
import com.cdzy.operations.model.entity.EbikeRegion;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 运营区域表 服务层。
|
||
|
|
*
|
||
|
|
* @author attiya
|
||
|
|
* @since 2025-10-22
|
||
|
|
*/
|
||
|
|
public interface EbikeRegionService extends IService<EbikeRegion> {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 添加运营区
|
||
|
|
* @param ebikeRegion 运营区
|
||
|
|
*/
|
||
|
|
void save(EbikeRegionVo ebikeRegion);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 修改运营区
|
||
|
|
* @param ebikeRegion 运营区
|
||
|
|
*/
|
||
|
|
void update(EbikeRegionVo ebikeRegion);
|
||
|
|
}
|