Tjiny
7 天以前 6d40f7c8b19efc612f824ee7e778d5be9f8382f5
HH.WCS.Mobox3.RiDong/api/SynthesizeController.cs
@@ -114,8 +114,10 @@
    /// 任务优先级
    /// </summary>
    /// <returns></returns>
    [HttpPost]
    public ApiModel.SimpleResult TaskPriority(ApiModel.MoboxTaskBase model)
    {
        var result = new ApiModel.SimpleResult();
        var operation = AdoSqlMethod<Operation>.QueryFirst(p => p.S_CODE == model.TaskNo);
@@ -123,7 +125,7 @@
        if (operation == null)
        {
            result.resultCode = -1;
            result.resultMsg = "任务不存在!";
            result.resultMsg = $"作业不存在!,传递的任务号为{model.TaskNo}";
            return result;
        }