using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Entity { public class CustomerInsertDataClass { private string _OrgCode;//组织编码 public string OrgCode { get { return _OrgCode; } set { _OrgCode = value; } } //private string _CustomerCode;//客户编码(只传区号,流水码程序获取) //public string CustomerCode //{ // get { return _CustomerCode; } // set { _CustomerCode = value; } //} private string _CustomerName;//客户名称 public string CustomerName { get { return _CustomerName; } set { _CustomerName = value; } } private string _ShortName;//客户简称 public string ShrotName { get { return _ShortName; } set { _ShortName = value; } } private string _CustomerType;//客户分类 public string CustomerType { get { return _CustomerType; } set { _CustomerType = value; } } private string _CustomerUser;//业务员 public string CustomerUser { get { return _CustomerUser; } set { _CustomerUser = value; } } private int _SaleType;//允限销类型(默认"不控制") public int SaleType { get { return _SaleType; } set { _SaleType = value; } } private string _PriceListCode;//价目表Code public string PriceListCode { get { return _PriceListCode; } set { _PriceListCode = value; } } private bool _IsPriceListModify;//价目表可改(默认打勾) public bool IsPriceListModify { get { return _IsPriceListModify; } set { _IsPriceListModify = value; } } private string _SupplySource;//供应来源 public string SupplySource { get { return _SupplySource; } set { _SupplySource = value; } } private string _DemandTransType;//供应类型 public string DemandTransType { get { return _DemandTransType; } set { _DemandTransType = value; } } private string _SupplyOrgCode;//供应组织编码 public string SupplyOrgCode { get { return _SupplyOrgCode; } set { _SupplyOrgCode = value; } } private string _WHCode;//存储地点编码(苏州八方、戈雅默认“成品仓库”,其他组织暂为空) public string WHCode { get { return _WHCode; } set { _WHCode = value; } } private string _ShippmentRuleCode;//出货原则编码(默认八方出货规则) public string ShippmentRule { get { return _ShippmentRuleCode; } set { _ShippmentRuleCode = value; } } private bool _IsShipmentModify;//出货原则可改(默认为Ture) public bool IsShipmentModify { get { return _IsShipmentModify; } set { _IsShipmentModify = value; } } private string _TaxScheduleCode;//税组合编码 public string TaxScheduleCode { get { return _TaxScheduleCode; } set { _TaxScheduleCode = value; } } private string _RecervalTermCode;//收款条件编码 public string RecervalTermCode { get { return _RecervalTermCode; } set { _RecervalTermCode = value; } } private bool _IsRecTermModify;//收款条件可改(默认为True) public bool IsRecTermModify { get { return _IsRecTermModify; } set { _IsRecTermModify = value; } } private int _QualityPledge;//质保方式(默认为空) public int QualityPledge { get { return _QualityPledge; } set { _QualityPledge = value; } } private string _ARConfirmTermCode;//立账条件 public string ARConfirmTerm { get { return _ARConfirmTermCode; } set { _ARConfirmTermCode = value; } } private bool _IsARCfmModify;//立账条件可改(默认为true) public bool IsARCfmModify { get { return _IsARCfmModify; } set { _IsARCfmModify = value; } } private string _InvoiceVerificationOrder;//核销顺序 public string InvoiceVerificationOrder { get { return _InvoiceVerificationOrder; } set { _InvoiceVerificationOrder = value; } } private string _VerificationMode;//核销明细 public string VerificationMode { get { return _VerificationMode; } set { _VerificationMode = value; } } private bool _IsByAccountAge;//按账龄催款(默认为True) public bool IsByAccountAge { get { return _IsByAccountAge; } set { _IsByAccountAge = value; } } private int _CheckAccountPeriod;//对账期间(默认为3) public int CheckAccountPeriod { get { return _CheckAccountPeriod; } set { _CheckAccountPeriod = value; } } private int _TradeCategory;//行业 public int TradeCategory { get { return _TradeCategory; } set { _TradeCategory = value; } } private DateTime _EfftiveDate;//生效日期 public DateTime EfftiveDate { get { return _EfftiveDate; } set { _EfftiveDate = value; } } private string _CurrencyName;//交易币种(旧) public string CurrencyName { get { return _CurrencyName; } set { _CurrencyName = value; } } private string _TradeCurrencyName;//交易币种 public string TradeCurrencyName { get { return _TradeCurrencyName; } set { _TradeCurrencyName = value; } } private string _ReceiveCurrencyName;//收款币种 public string ReceiveCurrencyName { get { return _ReceiveCurrencyName; } set { _ReceiveCurrencyName = value; } } private string _CorpUnifyCode;//工商注册码 public string CorpUnifyCode { get { return _CorpUnifyCode; } set { _CorpUnifyCode = value; } } private string _StateTaxNo;//纳锐人识别号 public string StateTaxNo { get { return _StateTaxNo; } set { _StateTaxNo = value; } } private string _CusAddress;//注册地址 public string CusAddress { get { return _CusAddress; } set { _CusAddress = value; } } private string _OfficialLocation;//收货地址 public string OfficialLocation { get { return _OfficialLocation; } set { _OfficialLocation = value; } } private string _pubDescSeg11;//客户类型 public string pubDescSeg11 { get { return _pubDescSeg11; } set { _pubDescSeg11 = value; } } public string customertype { get; set; } public string areaDivision { get; set; } public string emterritory { get; set; } public string CustomerNo { get; set; } } }