using System; using System.Data; namespace DSWeb.Models { /// /// 企业信息表 /// public class OpApplyEntity { public OpApplyEntity() { } #region 读写属性 private string _gid=""; /// /// 唯一编号 /// public string GID { get{ return _gid; } set{ _gid = value; } } private string _bsno=""; /// /// 业务编号 /// public string BSNO { get{ return _bsno; } set{ _bsno = value; } } private string _custno=""; /// /// 委托编号 /// public string CUSTNO { get{ return _custno; } set{ _custno = value; } } private DateTime _bsdate=DateTime.Now; /// /// 业务日期 / 接单日期 /// public DateTime BSDATE { get{ return _bsdate; } set{ _bsdate = value; } } private string _inspectionno=""; /// /// 审批单号 /// public string INSPECTIONNO { get{ return _inspectionno; } set{ _inspectionno = value; } } private string _customtype=""; /// /// 报关方式 /// public string CUSTOMTYPE { get{ return _customtype; } set{ _customtype = value; } } private string _customername=""; /// /// 委托单位 / 货主 /// public string CUSTOMERNAME { get{ return _customername; } set{ _customername = value; } } private string _clientnameold=""; /// /// 转移对象 /// public string CLIENTNAMEOLD { get{ return _clientnameold; } set{ _clientnameold = value; } } private string _storagename=""; /// /// 仓库名称 /// public string STORAGENAME { get{ return _storagename; } set{ _storagename = value; } } private string _storagenamenew=""; /// /// 转移仓库 /// public string STORAGENAMENEW { get{ return _storagenamenew; } set{ _storagenamenew = value; } } private int _pkgs=0; /// /// 件数 /// public int PKGS { get{ return _pkgs; } set{ _pkgs = value; } } private decimal _kgs=0; /// /// 毛重 /// public decimal KGS { get{ return _kgs; } set{ _kgs = value; } } private decimal _netweight=0; /// /// 净重 /// public decimal NETWEIGHT { get{ return _netweight; } set{ _netweight = value; } } private string _unitofweight=""; /// /// 计费单位 /// public string UNITOFWEIGHT { get{ return _unitofweight; } set{ _unitofweight = value; } } private decimal _cbm=0; /// /// 立方数/尺码 /// public decimal CBM { get{ return _cbm; } set{ _cbm = value; } } private decimal _importvalue=0; /// /// 货值 /// public decimal IMPORTVALUE { get{ return _importvalue; } set{ _importvalue = value; } } private decimal _unitprice=0; /// /// 单价 /// public decimal UNITPRICE { get{ return _unitprice; } set{ _unitprice = value; } } private string _currency=""; /// /// 币别 /// public string CURRENCY { get{ return _currency; } set{ _currency = value; } } private string _customser=""; /// /// 报关行 /// public string CUSTOMSER { get{ return _customser; } set{ _customser = value; } } private string _customno=""; /// /// 报关单号 /// public string CUSTOMNO { get{ return _customno; } set{ _customno = value; } } private DateTime _updatetime; /// /// 申报日期 /// public DateTime UPDATETIME { get{ return _updatetime; } set{ _updatetime = value; } } private DateTime _customdate; /// /// 通关日期 / 放行日期 /// public DateTime CUSTOMDATE { get{ return _customdate; } set{ _customdate = value; } } private string _remark=""; /// /// 备注 /// public string REMARK { get{ return _remark; } set{ _remark = value; } } private string _createuser = ""; /// /// 创建人 /// public string CREATEUSER { get { return _createuser; } set { _createuser = value; } } private DateTime _createtime = DateTime.Now; /// /// 创建时间 /// public DateTime CREATETIME { get { return _createtime; } set { _createtime = value; } } private string _modifieduser = ""; /// /// 最后一次更新操作人 /// public string MODIFIEDUSER { get { return _modifieduser; } set { _modifieduser = value; } } private DateTime _modifiedtime = DateTime.Now; /// /// 最后一次更新操作时间 /// public DateTime MODIFIEDTIME { get { return _modifiedtime; } set { _modifiedtime = value; } } private string _accdate = ""; /// /// 会计期间 /// public string ACCDATE { get { return _accdate; } set { _accdate = value; } } #endregion } }