using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_DTO.ERP { /// /// 成品领料出库 /// public class ErpProOutLingOrder { /// /// /// public int RowId { get; set; } /// /// /// public string OrderNo { get; set; } /// /// /// public string PCode { get; set; } /// /// /// public string PVer { get; set; } /// /// /// public string PLot { get; set; } /// /// /// public int DateCode { get; set; } /// /// /// public string WaType { get; set; } /// /// /// public float SetQty { get; set; } /// /// /// public float QtyPcs { get; set; } /// /// /// public float XQty { get; set; } /// /// /// public string XSite { get; set; } /// /// /// public string Unit { get; set; } /// /// /// public string OrderDate { get; set; } /// /// /// public string Note { get; set; } } }