duyongjia
2024-11-19 05d580b4357829263c9c44449621ca6017576dcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.TaskInfo
{
    public class DeliveryPlan
    {
        public bool isUpKiln { get; set; } = false; // 是否为上窑任务
        public string startPlan { get; set; } // 起始库存位置
        public string endPlan { get; set; } // 终点库存位置
        public string CarId { get; set; }
        public bool isQuit { get; set; } = true; // 是否为异常出库
 
        public bool isAtomatic { get; set; } = true; // 是否为AGV入库, true:agv入库、false:手动入库
    }
}