| | |
| | | package com.ruoyi.system.mapper; |
| | | |
| | | import com.ruoyi.system.domain.DictionaryCondition; |
| | | import com.ruoyi.system.domain.DispatchOrd; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 调度订单Mapper接口 |
| | |
| | | * @return 调度订单信息 |
| | | */ |
| | | public DispatchOrd selectDispatchOrdByServiceOrdIDDt(String serviceOrdIDDt); |
| | | |
| | | /** |
| | | * 根据CarID查询车牌号 |
| | | * |
| | | * @param carId CarID |
| | | * @return 车牌号 |
| | | */ |
| | | public String selectCarLicenseByCarId(Integer carId); |
| | | |
| | | /** |
| | | * 查询字典表中的条件数据 |
| | | * |
| | | * @return 条件数据列表 |
| | | */ |
| | | public List<DictionaryCondition> selectDictionaryConditions(); |
| | | |
| | | /** |
| | | * 根据服务订单ID查询条件ID列表 |
| | | * |
| | | * @param serviceOrdCoId 服务订单ID |
| | | * @return 条件ID列表 |
| | | */ |
| | | public List<Integer> selectConditionIdsByServiceOrdCoId(Long serviceOrdCoId); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 根据司机姓名查询司机手机号 |
| | | * |
| | | * @param driverName 司机姓名 |
| | | * @return 司机手机号 |
| | | */ |
| | | public String selectDriverMobileByName(String driverName); |
| | | } |