dengjunjie
2026-03-11 b2cc7bb7740e42e57cf50af02a8ca4b535cad484
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.WMS
{
    /// <summary>
    /// 库位信息查询
    /// </summary>
    public class WMSGetLocationInfo
    {
 
        /// <summary>
        /// 库区编号
        /// </summary>
        public string AreaCode { get; set; }
 
        /// <summary>
        /// 1:成品库
        /// 2:面料库
        /// 3:输送线缓存
        /// 4:裁剪库
        ///  5:1楼出入库站台
        /// </summary>
        public int WarehouseId { get; set; }
    }
}