| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- 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;
- /// <summary>
- /// 合同行号
- /// </summary>
- [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;
- /// <summary>
- /// 订货规格
- /// </summary>
- [Description("订货规格")]
- public String OrderSpecDesc
- {
- get { return orderSpecDesc; }
- set { orderSpecDesc = value; }
- }
- private String specName;
- /// <summary>
- /// 产品规格
- /// </summary>
- [Description("产品规格")]
- public String SpecName
- {
- get { return specName; }
- set { specName = value; }
- }
- private String lenDesc;
- /// <summary>
- /// 长度
- /// </summary>
- [Description("长度")]
- public String LenDesc
- {
- get { return lenDesc; }
- set { lenDesc = value; }
- }
- private String orderQty;
- /// <summary>
- /// 订货量
- /// </summary>
- [Description("订货量")]
- public String OrderQty
- {
- get { return orderQty; }
- set { orderQty = value; }
- }
- private String orderUnit;
- /// <summary>
- /// 订货单位
- /// </summary>
- [Description("订货计量单位")]
- public String OrderUnit
- {
- get { return orderUnit; }
- set { orderUnit = value; }
- }
- private String prdctWgt;
- /// <summary>
- /// 生产吨数
- /// </summary>
- [Description("生产量(支、吨)")]
- public String PrdctWgt
- {
- get { return prdctWgt; }
- set { prdctWgt = value; }
- }
- private String delvryRangeTpe;
- /// <summary>
- /// 交货方式
- /// </summary>
- [Description("交货量差")]
- public String DelvryRangeTpe
- {
- get { return delvryRangeTpe; }
- set { delvryRangeTpe = value; }
- }
- private String modelDesc;
- /// <summary>
- /// 扣型
- /// </summary>
- [Description("扣型")]
- public String ModelDesc
- {
- get { return modelDesc; }
- set { modelDesc = value; }
- }
- private String outPrice;
- /// <summary>
- /// 出厂价
- /// </summary>
- [Description("出厂价")]
- public String OutPrice
- {
- get { return outPrice; }
- set { outPrice = value; }
- }
- private String blaPrice;
- /// <summary>
- /// 结算价
- /// </summary>
- [Description("结算价")]
- public String BlaPrice
- {
- get { return blaPrice; }
- set { blaPrice = value; }
- }
- private String trsPrice;
- /// <summary>
- /// 运费
- /// </summary>
- [Description("运费")]
- public String TrsPrice
- {
- get { return trsPrice; }
- set { trsPrice = value; }
- }
- private String pakPrice;
- /// <summary>
- /// 吊装费
- /// </summary>
- [Description("吊装费")]
- public String PakPrice
- {
- get { return pakPrice; }
- set { pakPrice = value; }
- }
- private String tonPrice;
- /// <summary>
- /// 吨价
- /// </summary>
- [Description("吨价")]
- public String TonPrice
- {
- get { return tonPrice; }
- set { tonPrice = value; }
- }
- private String orderThBc;
- /// <summary>
- /// 半成品管理号
- /// </summary>
- [Description("半成品管理号")]
- public String OrderThBc
- {
- get { return orderThBc; }
- set { orderThBc = value; }
- }
- private String orderThBcPrice;
- /// <summary>
- /// 半成品价格
- /// </summary>
- [Description("半成品价格")]
- public String OrderThBcPrice
- {
- get { return orderThBcPrice; }
- set { orderThBcPrice = value; }
- }
- private String keepType;
- /// <summary>
- /// 保价类型
- /// </summary>
- [Description("保价类型")]
- public String KeepType
- {
- get { return keepType; }
- set { keepType = value; }
- }
- private String ddzy;
- /// <summary>
- /// 吊带装运
- /// </summary>
- ///
- [Description("吊带装运")]
- public String Ddzy
- {
- get { return ddzy; }
- set { ddzy = value; }
- }
- }
- }
|