using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebAPI.Models { public class OrderPlan_ZhuSu { public string PID { get; set; } /// /// 计划号 /// public string PLAN_NO { get; set; } /// /// 计划顺序号 /// public string PLAN_SEQ { get; set; } /// /// 计划状态 /// public string PLAN_STATE { get; set; } /// /// 零件号 /// public string MATERIAL_CODE { get; set; } /// /// 绑定BOM /// public string PBOM_CODE { get; set; } /// /// 绑定工艺路线 /// public string ROUTE_CODE { get; set; } /// /// 计划数量 /// public string QTY { get; set; } /// /// 完成数 /// public string COMPLETE_QTY { get; set; } /// /// 计划日期 /// public string PLAN_DATE { get; set; } /// /// 计划班次 /// public string SHIFT_CODE { get; set; } } }