using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_DTO { public class NotifyFinishTest { /// /// 库区 /// public int LocationArea { get; set; } /// /// 托盘号 /// public string PalletBarcode { get; set; } /// /// 库位号 /// public string LocationID { get; set; } /// /// 是否存在NG (1-有;2-无) /// public int IsNG { get; set; } } }