dengjunjie
2026-02-26 933e1bd3517936e1d5488d84827a830cf1310a83
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
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO
{
    /// <summary>
    /// 修改库位的区域
    /// </summary>
    public class EditreacklocationGALAXIS
    {
        /// <summary>
        /// 请求时间戳
        /// </summary>
        public string timestamp { get; set; }
 
        /// <summary>
        /// 容器编码数组
        /// </summary>
        public string[] locationNos { get; set; }
 
        /// <summary>
        /// 修改后的区域号
        /// </summary>
        public string  area { get; set; }
 
 
        /// <summary>
        /// 容器原有库区,默认“cg”
        /// </summary>
        public string  district { get; set; }
    }
}