1
wankeda
2026-03-05 a03ff104df699229eff31f31890544ccc6a7c8da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.ConveyorLine
{
    public class ContainerSwitchDTO
    {
        /// <summary>
        /// 容器编号
        /// </summary>
        public string ContainerCode { get; set; }
        /// <summary>
        /// 控制状态(0 启动;1 暂停)
        /// </summary>
        public int SwitchSate { get; set; }
 
        /// <summary>
        /// 任务ID
        /// </summary>
        public int TaskID { get; set; }
 
        /// <summary>
        /// 目的地
        /// </summary>
        public int PointCode { get; set; }
    }
}