using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//info_client
public class info_client
{
///
/// GID
///
private string _gid;
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
///
/// 客户代码
///
private string _codename;
public string CODENAME
{
get{ return _codename; }
set{ _codename = value; }
}
///
/// 客户简称
///
private string _shortname;
public string SHORTNAME
{
get{ return _shortname; }
set{ _shortname = value; }
}
///
/// 客户中文名称或描述信息
///
private string _description;
public string DESCRIPTION
{
get{ return _description; }
set{ _description = value; }
}
///
/// 客户英文简称
///
private string _name;
public string NAME
{
get{ return _name; }
set{ _name = value; }
}
///
/// 客户英文全称
///
private string _enfullname;
public string EnFullName
{
get{ return _enfullname; }
set{ _enfullname = value; }
}
///
/// 客户状态
///
private int? _status;
public int? STATUS
{
get{ return _status; }
set{ _status = value; }
}
///
/// 通讯地址
///
private string _addr;
public string ADDR
{
get{ return _addr; }
set{ _addr = value; }
}
///
/// 邮箱
///
private string _email;
public string EMAIL
{
get{ return _email; }
set{ _email = value; }
}
///
/// 网页
///
private string _web;
public string WEB
{
get{ return _web; }
set{ _web = value; }
}
///
/// 电话
///
private string _tel;
public string TEL
{
get{ return _tel; }
set{ _tel = value; }
}
///
/// 传真
///
private string _fax;
public string FAX
{
get{ return _fax; }
set{ _fax = value; }
}
///
/// 负责人
///
private string _chief;
public string CHIEF
{
get{ return _chief; }
set{ _chief = value; }
}
///
/// 所属揽货人
///
private string _sale;
public string SALE
{
get{ return _sale; }
set{ _sale = value; }
}
///
/// 所属揽货人
///
private string _op;
public string OP
{
get{ return _op; }
set{ _op = value; }
}
///
/// 所属单证
///
private string _doc;
public string DOC
{
get{ return _doc; }
set{ _doc = value; }
}
///
/// 是否船公司
///
private bool? _iscarrier;
public bool? ISCARRIER
{
get{ return _iscarrier; }
set{ _iscarrier = value; }
}
///
/// 是否订舱公司
///
private bool? _isbooking;
public bool? ISBOOKING
{
get{ return _isbooking; }
set{ _isbooking = value; }
}
///
/// 是否场站
///
private bool? _isyard;
public bool? ISYARD
{
get{ return _isyard; }
set{ _isyard = value; }
}
///
/// 是否车队
///
private bool? _istruck;
public bool? ISTRUCK
{
get{ return _istruck; }
set{ _istruck = value; }
}
///
/// 是否委托单位
///
private bool? _iscontroller;
public bool? ISCONTROLLER
{
get{ return _iscontroller; }
set{ _iscontroller = value; }
}
///
/// 是否报关行
///
private bool? _iscustom;
public bool? ISCUSTOM
{
get{ return _iscustom; }
set{ _iscustom = value; }
}
///
/// 是否代理(国外)
///
private bool? _isagent;
public bool? ISAGENT
{
get{ return _isagent; }
set{ _isagent = value; }
}
///
/// 是否代理(国内)
///
private bool? _isagentcn;
public bool? ISAGENTCN
{
get{ return _isagentcn; }
set{ _isagentcn = value; }
}
///
/// 是否快递公司
///
private bool? _isexpress;
public bool? ISEXPRESS
{
get{ return _isexpress; }
set{ _isexpress = value; }
}
///
/// 是否航空公司
///
private bool? _isairlines;
public bool? ISAIRLINES
{
get{ return _isairlines; }
set{ _isairlines = value; }
}
///
/// 是否发货人
///
private bool? _isshipper;
public bool? ISSHIPPER
{
get{ return _isshipper; }
set{ _isshipper = value; }
}
///
/// 是否收货人
///
private bool? _isconsignee;
public bool? ISCONSIGNEE
{
get{ return _isconsignee; }
set{ _isconsignee = value; }
}
///
/// 是否通知人
///
private bool? _isnotifyparty;
public bool? ISNOTIFYPARTY
{
get{ return _isnotifyparty; }
set{ _isnotifyparty = value; }
}
///
/// 是否仓库
///
private bool? _iswarehouse;
public bool? ISWAREHOUSE
{
get{ return _iswarehouse; }
set{ _iswarehouse = value; }
}
///
/// 国家
///
private string _country;
public string COUNTRY
{
get{ return _country; }
set{ _country = value; }
}
///
/// 省或州
///
private string _province;
public string PROVINCE
{
get{ return _province; }
set{ _province = value; }
}
///
/// 城市
///
private string _city;
public string CITY
{
get{ return _city; }
set{ _city = value; }
}
///
/// CORPID
///
private string _corpid;
public string CORPID
{
get{ return _corpid; }
set{ _corpid = value; }
}
///
/// BLCONTENT
///
private string _blcontent;
public string BLCONTENT
{
get{ return _blcontent; }
set{ _blcontent = value; }
}
///
/// 是否停用该客户信息
///
private bool? _isstop;
public bool? ISSTOP
{
get{ return _isstop; }
set{ _isstop = value; }
}
///
/// 发票抬头1
///
private string _billrises1;
public string BillRises1
{
get{ return _billrises1; }
set{ _billrises1 = value; }
}
///
/// 发票抬头2
///
private string _billrises2;
public string BillRises2
{
get{ return _billrises2; }
set{ _billrises2 = value; }
}
///
/// 美元支票抬头
///
private string _usdbillrises;
public string USDBillRises
{
get{ return _usdbillrises; }
set{ _usdbillrises = value; }
}
///
/// 人民币支票抬头
///
private string _rmbbillrises;
public string RMBBillRises
{
get{ return _rmbbillrises; }
set{ _rmbbillrises = value; }
}
///
/// 人民币开户银行
///
private string _rmbbank;
public string RMBBank
{
get{ return _rmbbank; }
set{ _rmbbank = value; }
}
///
/// 人民币账号
///
private string _rmbaccount;
public string RMBAccount
{
get{ return _rmbaccount; }
set{ _rmbaccount = value; }
}
///
/// 人民币联机行号
///
private string _rmbonlineno;
public string RMBOnlineNO
{
get{ return _rmbonlineno; }
set{ _rmbonlineno = value; }
}
///
/// 美元开户银行
///
private string _usdbank;
public string USDBank
{
get{ return _usdbank; }
set{ _usdbank = value; }
}
///
/// 美元账号
///
private string _usdaccount;
public string USDAccount
{
get{ return _usdaccount; }
set{ _usdaccount = value; }
}
///
/// 美元联机行号
///
private string _usdonlineno;
public string USDOnlineNO
{
get{ return _usdonlineno; }
set{ _usdonlineno = value; }
}
///
/// 自定义属性1
///
private string _customattributes1;
public string CustomAttributes1
{
get{ return _customattributes1; }
set{ _customattributes1 = value; }
}
///
/// 自定义属性2
///
private string _customattributes2;
public string CustomAttributes2
{
get{ return _customattributes2; }
set{ _customattributes2 = value; }
}
///
/// 美元信用最大金额
///
private decimal? _usdmaxamountcredit;
public decimal? USDMaxAmountCredit
{
get{ return _usdmaxamountcredit; }
set{ _usdmaxamountcredit = value; }
}
///
/// 人民币信用最大金额
///
private decimal? _rmbmaxamountcredit;
public decimal? RMBMaxAmountCredit
{
get{ return _rmbmaxamountcredit; }
set{ _rmbmaxamountcredit = value; }
}
///
/// 信用最大金额(RMB+USD)
///
private decimal? _maxamountcredit;
public decimal? MaxAmountCredit
{
get{ return _maxamountcredit; }
set{ _maxamountcredit = value; }
}
///
/// 结算方式编码
///
private string _stlname;
public string STLNAME
{
get{ return _stlname; }
set{ _stlname = value; }
}
///
/// 处理人
///
private string _opname;
public string OPNAME
{
get{ return _opname; }
set{ _opname = value; }
}
///
/// 处理时间
///
private DateTime? _optime;
public DateTime? OPTIME
{
get{ return _optime; }
set{ _optime = value; }
}
///
/// 备注
///
private string _remark;
public string REMARK
{
get{ return _remark; }
set{ _remark = value; }
}
///
/// 美金汇率
///
private decimal? _usdexchangerate;
public decimal? USDExchangeRate
{
get{ return _usdexchangerate; }
set{ _usdexchangerate = value; }
}
///
/// 月结算时间
///
private string _stldate;
public string STLDATE
{
get{ return _stldate; }
set{ _stldate = value; }
}
///
/// 上半月结算时间
///
private string _stlfirsthalfdate;
public string STLFIRSTHALFDATE
{
get{ return _stlfirsthalfdate; }
set{ _stlfirsthalfdate = value; }
}
///
/// 下半月结算时间
///
private string _stlmiddledate;
public string STLMIDDLEDATE
{
get{ return _stlmiddledate; }
set{ _stlmiddledate = value; }
}
///
/// STLDATEPJ
///
private string _stldatepj;
public string STLDATEPJ
{
get{ return _stldatepj; }
set{ _stldatepj = value; }
}
///
/// LEVEL
///
private string _level;
public string LEVEL
{
get{ return _level; }
set{ _level = value; }
}
///
/// LOGINNAME
///
private string _loginname;
public string LOGINNAME
{
get{ return _loginname; }
set{ _loginname = value; }
}
///
/// LOGINPASSWORD
///
private string _loginpassword;
public string LOGINPASSWORD
{
get{ return _loginpassword; }
set{ _loginpassword = value; }
}
///
/// QQ
///
private string _qq;
public string QQ
{
get{ return _qq; }
set{ _qq = value; }
}
///
/// MSN
///
private string _msn;
public string MSN
{
get{ return _msn; }
set{ _msn = value; }
}
///
/// MODIFIEDUSER
///
private string _modifieduser;
public string MODIFIEDUSER
{
get{ return _modifieduser; }
set{ _modifieduser = value; }
}
///
/// MODIFIEDTIME
///
private DateTime? _modifiedtime;
public DateTime? MODIFIEDTIME
{
get{ return _modifiedtime; }
set{ _modifiedtime = value; }
}
///
/// ISWHARF
///
private bool? _iswharf;
public bool? ISWHARF
{
get{ return _iswharf; }
set{ _iswharf = value; }
}
///
/// ISSHIPPINGAGENT
///
private bool? _isshippingagent;
public bool? ISSHIPPINGAGENT
{
get{ return _isshippingagent; }
set{ _isshippingagent = value; }
}
///
/// FARCODE
///
private string _farcode;
public string FARCODE
{
get{ return _farcode; }
set{ _farcode = value; }
}
///
/// FAPCODE
///
private string _fapcode;
public string FAPCODE
{
get{ return _fapcode; }
set{ _fapcode = value; }
}
///
/// ISINSURE
///
private bool? _isinsure;
public bool? ISINSURE
{
get{ return _isinsure; }
set{ _isinsure = value; }
}
///
/// ISLEASING
///
private bool? _isleasing;
public bool? ISLEASING
{
get{ return _isleasing; }
set{ _isleasing = value; }
}
///
/// ISTRADINGAGENCY
///
private bool? _istradingagency;
public bool? ISTRADINGAGENCY
{
get{ return _istradingagency; }
set{ _istradingagency = value; }
}
///
/// ISOTHER
///
private bool? _isother;
public bool? ISOTHER
{
get{ return _isother; }
set{ _isother = value; }
}
///
/// OTHERS
///
private string _others;
public string OTHERS
{
get{ return _others; }
set{ _others = value; }
}
///
/// UNITPRICE
///
private string _unitprice;
public string UNITPRICE
{
get{ return _unitprice; }
set{ _unitprice = value; }
}
///
/// REGISTRATIONNO
///
private string _registrationno;
public string REGISTRATIONNO
{
get{ return _registrationno; }
set{ _registrationno = value; }
}
///
/// ORDERNO
///
private string _orderno;
public string ORDERNO
{
get{ return _orderno; }
set{ _orderno = value; }
}
///
/// ISENTERP
///
private bool? _isenterp;
public bool? ISENTERP
{
get{ return _isenterp; }
set{ _isenterp = value; }
}
///
/// TAXNO
///
private string _taxno;
public string TAXNO
{
get{ return _taxno; }
set{ _taxno = value; }
}
///
/// EDICODE
///
private string _edicode;
public string EDICODE
{
get{ return _edicode; }
set{ _edicode = value; }
}
///
/// EDICODE2
///
private string _edicode2;
public string EDICODE2
{
get{ return _edicode2; }
set{ _edicode2 = value; }
}
///
/// EDICODE3
///
private string _edicode3;
public string EDICODE3
{
get{ return _edicode3; }
set{ _edicode3 = value; }
}
///
/// ORGANIZATIONCODE
///
private string _organizationcode;
public string ORGANIZATIONCODE
{
get{ return _organizationcode; }
set{ _organizationcode = value; }
}
///
/// PCORPNAME
///
private string _pcorpname;
public string PCORPNAME
{
get{ return _pcorpname; }
set{ _pcorpname = value; }
}
///
/// InspectionNo
///
private string _inspectionno;
public string InspectionNo
{
get{ return _inspectionno; }
set{ _inspectionno = value; }
}
///
/// 船代
///
private bool? _isshipagency;
public bool? ISSHIPAGENCY
{
get{ return _isshipagency; }
set{ _isshipagency = value; }
}
///
/// blstatus
///
private int? _blstatus;
public int? blstatus
{
get{ return _blstatus; }
set{ _blstatus = value; }
}
///
/// ISSP
///
private bool? _issp;
public bool? ISSP
{
get{ return _issp; }
set{ _issp = value; }
}
///
/// FEEFRT
///
private string _feefrt;
public string FEEFRT
{
get{ return _feefrt; }
set{ _feefrt = value; }
}
///
/// RCVMode
///
private int? _rcvmode;
public int? RCVMode
{
get{ return _rcvmode; }
set{ _rcvmode = value; }
}
///
/// ICOURL
///
private string _icourl;
public string ICOURL
{
get{ return _icourl; }
set{ _icourl = value; }
}
///
/// BSSOURCE
///
private string _bssource;
public string BSSOURCE
{
get{ return _bssource; }
set{ _bssource = value; }
}
///
/// INVBANK
///
private string _invbank;
public string INVBANK
{
get{ return _invbank; }
set{ _invbank = value; }
}
///
/// INVADDRTEL
///
private string _invaddrtel;
public string INVADDRTEL
{
get{ return _invaddrtel; }
set{ _invaddrtel = value; }
}
///
/// SALECORPID
///
private string _salecorpid;
public string SALECORPID
{
get{ return _salecorpid; }
set{ _salecorpid = value; }
}
}
}