| | |
| | | package com.ruoyi.system.mapper; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.ruoyi.system.domain.ServiceOrder; |
| | | import com.ruoyi.common.annotation.DataSource; |
| | | import com.ruoyi.common.enums.DataSourceType; |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deleteServiceOrderByIds(Long[] serviceOrdIds); |
| | | |
| | | /** |
| | | * 更新服务订单取消信息 |
| | | * |
| | | * @param serviceOrdId 服务订单ID |
| | | * @param cancelReason 取消原因ID |
| | | * @param cancelReasonText 取消原因文本 |
| | | * @return 影响行数 |
| | | */ |
| | | public int updateServiceOrderCancelInfo(@Param("serviceOrdId") Long serviceOrdId, |
| | | @Param("cancelReason") Integer cancelReason, |
| | | @Param("cancelReasonText") String cancelReasonText); |
| | | |
| | | /** |
| | | * 根据服务订单ID查询订单状态 |
| | | * |
| | | * @param serviceOrdId 服务订单ID |
| | | * @return 订单状态码 |
| | | */ |
| | | public Integer selectServiceOrderStateById(Long serviceOrdId); |
| | | |
| | | /** |
| | | * 根据服务订单ID查询取消信息 |
| | | * |
| | | * @param serviceOrdId 服务订单ID |
| | | * @return 取消信息 |
| | | */ |
| | | public Map<String, Object> selectServiceCancelInfoById(Long serviceOrdId); |
| | | } |