using System; using System.Data; namespace DSWeb.Models { public class InvoiceApplicationEntity { #region 私有成员 private string _gid;//主键惟一编号 private string _bill_no;//申请编号 IV开头 private int _bill_status;//申请状态 1-未提交 2-已提交 3-已开出 private string _customer_name;//客户名称 private string _invoice_no;//发票号码 private string _invoice_customer;//发票抬头 private string _bsno;//委托编号 private string _vessel_voyage;//船名航次 private DateTime _etd;//开船日期 private string _pol;//起运港 private string _pod;//目的港 private string _fee_item;//费用内容 private string _amount_list;//金额列表 private decimal _apply_amount;//申请金额 private string _amount_capital;//金额大写 private string _currency;//币别 private string _remark;//备注 private string _applicant;//申请人 private DateTime _apply_time;//申请时间 private DateTime _enter_time;//提交时间 private string _operator;//开出人 private DateTime _operate_time;//开出时间 private string _mblno;//主题单号 private bool _is_apply;//是否已经提交 private bool _is_delete;//是否删除 private string _delete_user;//删除操作人 private DateTime _delete_time;//删除操作时间 private decimal _rate;//折算汇率 private string _company_id;//分公司GID #endregion public InvoiceApplicationEntity() { } #region /// /// 主键惟一编号 /// public string GID { get { return _gid; } set { _gid = value; } } /// /// 申请编号 IV开头 /// public string BillNO { get { return _bill_no; } set { _bill_no = value; } } /// /// 申请状态 1-未提交 2-已提交 3-已开出 /// public int BillStatus { get { return _bill_status; } set { _bill_status = value; } } /// /// 客户名称 /// public string CustomerName { get { return _customer_name; } set { _customer_name = value; } } /// /// 发票号码 /// public string InvoiceNO { get { return _invoice_no; } set { _invoice_no = value; } } /// /// 发票抬头 /// public string InvoiceCustomer { get { return _invoice_customer; } set { _invoice_customer = value; } } /// /// 委托编号 /// public string BSNO { get { return _bsno; } set { _bsno = value; } } /// /// 船名航次 /// public string VesselVoyage { get { return _vessel_voyage; } set { _vessel_voyage = value; } } /// /// 开船日期 /// public DateTime ETD { get { return _etd; } set { _etd = value; } } /// /// 起运港 /// public string POL { get { return _pol; } set { _pol = value; } } /// /// 目的港 /// public string POD { get { return _pod; } set { _pod = value; } } /// /// 费用内容 /// public string FeeItem { get { return _fee_item; } set { _fee_item = value; } } /// /// 金额列表 /// public string AmountList { get { return _amount_list; } set { _amount_list = value; } } /// /// 申请金额 /// public decimal ApplyAmount { get { return _apply_amount; } set { _apply_amount = value; } } /// /// 金额大写 /// public string AmountCapital { get { return _amount_capital; } set { _amount_capital = value; } } /// /// 币别 /// public string Currency { get { return _currency; } set { _currency = value; } } /// /// 备注 /// public string Remark { get { return _remark; } set { _remark = value; } } /// /// 申请人 /// public string Applicant { get { return _applicant; } set { _applicant = value; } } /// /// 申请时间 /// public DateTime ApplyTime { get { return _apply_time; } set { _apply_time = value; } } /// /// 提交时间 /// public DateTime EnterTime { get { return _enter_time; } set { _enter_time = value; } } /// /// 开出人 /// public string Operator { get { return _operator; } set { _operator = value; } } /// /// 开出时间 /// public DateTime OperateTime { get { return _operate_time; } set { _operate_time = value; } } /// /// 主题单号 /// public string MBLNO { get { return _mblno; } set { _mblno = value; } } /// /// 是否已经提交 /// public bool IsApply { get { return _is_apply; } set { _is_apply = value; } } /// /// 是否删除 /// public bool IsDelete { get { return _is_delete; } set { _is_delete = value; } } /// /// 删除操作人 /// public string DeleteUser { get { return _delete_user; } set { _delete_user = value; } } /// /// 删除操作时间 /// public DateTime DeleteTime { get { return _delete_time; } set { _delete_time = value; } } /// /// 折算汇率 /// public decimal Rate { get { return _rate; } set { _rate = value; } } /// /// 分公司GID /// public string CompanyID { get { return _company_id; } set { _company_id = value; } } #endregion } }