31 lines
732 B
Java
31 lines
732 B
Java
|
|
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);
|
|||
|
|
|
|||
|
|
}
|