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 BarCodes { get; set; } /// /// 卷绕长度 /// public string size { get; set; } } }