南骏 池
2025-08-16 aabf059c41fc0929279a7e19c49aabf53de56fce
Controllers/Wom/WomdaaController.cs
@@ -659,5 +659,31 @@
        }
    }
    /// <summary>
    /// AGV呼叫线体列表
    /// </summary>
    /// <param name="query"></param>
    /// <returns></returns>
    [HttpPost("GetAgvXt")]
    public ResponseResult GetAgvXt([FromBody] dynamic query)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            resultInfos.tbBillList = m.GetAgvXt(query);
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
    #endregion
}