2025-04-14 09:35:36 +08:00

31 lines
732 B
Java
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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);
}