huangxiaoqiang
15 小时以前 eaa7c0d999c6dd7901bf4f0de79b861eae38e978
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.AGV
{
    public class AGVReceiveDTO
    {
        /// <summary>
        /// 任务号
        /// </summary>
        public int TaskNum { get; set; }
 
        /// <summary>
        /// 状态: PutFinish放货完成、PickUpFinish取货完成、RequestPickUp请求取货、RequestPut请求放货
        /// </summary>
        public string Status { get; set; }
    }
}