qinchulong
2025-03-29 039a4a5433e7f80adc88b491b549e5d9486e4f9a
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WIDESEA_Core.Utilities
{
   public class MEStockMaterBindRequest
    {
        //任务号
        public string TaskID { get; set; }
        //缓存架编号
        public string Devid { get; set; }
        //物料类型
        public string MaterialType { get; set; }
        //物料条码
        public string BarCode { get; set; }
        //物料标签状态
        public string MaterialStatus { get; set; }
        //分拨台卷绕库存数量
        public int  sum{ get; set; }
        //区分ZJ或FJ
        public string CacheDevid { get; set; }
        //分拨台卷绕多个条码
        public List<string> BarCodes { get; set; }
 
        /// <summary>
        /// 卷绕长度
        /// </summary>
        public string size { get; set; }
    }
}