| | |
| | | import java.util.List; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | import com.ruoyi.system.domain.SysTask; |
| | | import com.ruoyi.system.domain.SysTaskLog; |
| | | import com.ruoyi.system.domain.SysTaskVehicle; |
| | | import com.ruoyi.system.domain.SysTaskAttachment; |
| | | import com.ruoyi.system.domain.vo.TaskQueryVO; |
| | |
| | | public int changeTaskStatus(Long taskId, TaskStatus newStatus, String remark); |
| | | |
| | | /** |
| | | * 变更任务状态(含GPS位置信息) |
| | | * |
| | | * @param taskId 任务ID |
| | | * @param newStatus 新状态 |
| | | * @param remark 备注 |
| | | * @param locationLog GPS位置信息日志对象 |
| | | * @return 结果 |
| | | */ |
| | | public int changeTaskStatusWithLocation(Long taskId, TaskStatus newStatus, String remark, SysTaskLog locationLog); |
| | | |
| | | /** |
| | | * 上传任务附件 |
| | | * |
| | | * @param taskId 任务ID |