using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace Core.StlMes.Client.SaleOrder { class OrderLineAPriceEntity { private String orderSeq; /// /// 合同行号 /// [Description("合同行号")] public String OrderSeq { get { return orderSeq; } set { orderSeq = value; } } private String pscDesc; [Description("订货产品")] public String PscDesc { get { return pscDesc; } set { pscDesc = value; } } private String orderSpecDesc; /// /// 订货规格 /// [Description("订货规格")] public String OrderSpecDesc { get { return orderSpecDesc; } set { orderSpecDesc = value; } } private String specName; /// /// 产品规格 /// [Description("产品规格")] public String SpecName { get { return specName; } set { specName = value; } } private String lenDesc; /// /// 长度 /// [Description("长度")] public String LenDesc { get { return lenDesc; } set { lenDesc = value; } } private String orderQty; /// /// 订货量 /// [Description("订货量")] public String OrderQty { get { return orderQty; } set { orderQty = value; } } private String orderUnit; /// /// 订货单位 /// [Description("订货计量单位")] public String OrderUnit { get { return orderUnit; } set { orderUnit = value; } } private String prdctWgt; /// /// 生产吨数 /// [Description("生产量(支、吨)")] public String PrdctWgt { get { return prdctWgt; } set { prdctWgt = value; } } private String delvryRangeTpe; /// /// 交货方式 /// [Description("交货量差")] public String DelvryRangeTpe { get { return delvryRangeTpe; } set { delvryRangeTpe = value; } } private String modelDesc; /// /// 扣型 /// [Description("扣型")] public String ModelDesc { get { return modelDesc; } set { modelDesc = value; } } private String outPrice; /// /// 出厂价 /// [Description("出厂价")] public String OutPrice { get { return outPrice; } set { outPrice = value; } } private String blaPrice; /// /// 结算价 /// [Description("结算价")] public String BlaPrice { get { return blaPrice; } set { blaPrice = value; } } private String trsPrice; /// /// 运费 /// [Description("运费")] public String TrsPrice { get { return trsPrice; } set { trsPrice = value; } } private String pakPrice; /// /// 吊装费 /// [Description("吊装费")] public String PakPrice { get { return pakPrice; } set { pakPrice = value; } } private String tonPrice; /// /// 吨价 /// [Description("吨价")] public String TonPrice { get { return tonPrice; } set { tonPrice = value; } } private String orderThBc; /// /// 半成品管理号 /// [Description("半成品管理号")] public String OrderThBc { get { return orderThBc; } set { orderThBc = value; } } private String orderThBcPrice; /// /// 半成品价格 /// [Description("半成品价格")] public String OrderThBcPrice { get { return orderThBcPrice; } set { orderThBcPrice = value; } } private String keepType; /// /// 保价类型 /// [Description("保价类型")] public String KeepType { get { return keepType; } set { keepType = value; } } private String ddzy; /// /// 吊带装运 /// /// [Description("吊带装运")] public String Ddzy { get { return ddzy; } set { ddzy = value; } } } }