using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WCS.Mobox3.YNJT_BZP.models { internal class TN_YiKuDetail : BaseModel { public string S_NO { get; set; } // 工单号 public string S_START_AREA { get; set; } // 起点库区 public int S_START_ROW { get; set; } // 起点排 public float N_QTY { get; set; } // 数量 public string S_END_AREA { get; set; } // 终点库区 public int S_END_ROW { get; set; } // 终点排 public float N_COMPLETE_NUM { get; set; } // 完成数量 } }