31 lines
732 B
Java
Raw Normal View History

2025-04-14 09:35:36 +08:00
package com.cdzy.ebikemaintenance.service;
import com.cdzy.ebikemaintenance.model.pojo.EbikeCarStatusInfo;
import com.mybatisflex.core.service.IService;
import java.util.List;
import java.util.Map;
/**
* 系统参数码表之类服务接口
*
* @author dingchao
* @date 2025/3/21
* @modified by:
*/
public interface EbikeSystemInfoService extends IService<EbikeCarStatusInfo> {
/**
* 获取系统码表
* @param _type 0车辆运维状态 1车辆运营状态
* @return List<Map>
*/
List<Map> getEbikeCarStatus(Integer _type);
/**
* 根据code获取名称
* @param code 状态编码
* @return String
*/
String getEbikeCarStatusName(Integer code);
}