wangxinhui
2026-03-10 c19955c0d1e21469691059290870ce42a9d46f3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.Agv
{
    public class AgvFinishResponse
    {
        /// <summary>
        /// 返回码
        /// </summary>
        public string Code { get; set; }
        /// <summary>
        /// 返回消息
        /// </summary>
        public string Content { get; set; }
        /// <summary>
        /// 结果
        /// </summary>
        public bool Success { get; set; }
    }
}