You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
261 lines
6.9 KiB
C#
261 lines
6.9 KiB
C#
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;//删除操作时间
|
|
|
|
#endregion
|
|
public InvoiceApplicationEntity()
|
|
{
|
|
}
|
|
#region
|
|
/// <summary>
|
|
/// 主键惟一编号
|
|
/// </summary>
|
|
public string GID
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 申请编号 IV开头
|
|
/// </summary>
|
|
public string BillNO
|
|
{
|
|
get { return _bill_no; }
|
|
set { _bill_no = value; }
|
|
}
|
|
/// <summary>
|
|
/// 申请状态 1-未提交 2-已提交 3-已开出
|
|
/// </summary>
|
|
public int BillStatus
|
|
{
|
|
get { return _bill_status; }
|
|
set { _bill_status = value; }
|
|
}
|
|
/// <summary>
|
|
/// 客户名称
|
|
/// </summary>
|
|
public string CustomerName
|
|
{
|
|
get { return _customer_name; }
|
|
set { _customer_name = value; }
|
|
}
|
|
/// <summary>
|
|
/// 发票号码
|
|
/// </summary>
|
|
public string InvoiceNO
|
|
{
|
|
get { return _invoice_no; }
|
|
set { _invoice_no = value; }
|
|
}
|
|
/// <summary>
|
|
/// 发票抬头
|
|
/// </summary>
|
|
public string InvoiceCustomer
|
|
{
|
|
get { return _invoice_customer; }
|
|
set { _invoice_customer = value; }
|
|
}
|
|
/// <summary>
|
|
/// 委托编号
|
|
/// </summary>
|
|
public string BSNO
|
|
{
|
|
get { return _bsno; }
|
|
set { _bsno = value; }
|
|
}
|
|
/// <summary>
|
|
/// 船名航次
|
|
/// </summary>
|
|
public string VesselVoyage
|
|
{
|
|
get { return _vessel_voyage; }
|
|
set { _vessel_voyage = value; }
|
|
}
|
|
/// <summary>
|
|
/// 开船日期
|
|
/// </summary>
|
|
public DateTime ETD
|
|
{
|
|
get { return _etd; }
|
|
set { _etd = value; }
|
|
}
|
|
/// <summary>
|
|
/// 起运港
|
|
/// </summary>
|
|
public string POL
|
|
{
|
|
get { return _pol; }
|
|
set { _pol = value; }
|
|
}
|
|
/// <summary>
|
|
/// 目的港
|
|
/// </summary>
|
|
public string POD
|
|
{
|
|
get { return _pod; }
|
|
set { _pod = value; }
|
|
}
|
|
/// <summary>
|
|
/// 费用内容
|
|
/// </summary>
|
|
public string FeeItem
|
|
{
|
|
get { return _fee_item; }
|
|
set { _fee_item = value; }
|
|
}
|
|
/// <summary>
|
|
/// 金额列表
|
|
/// </summary>
|
|
public string AmountList
|
|
{
|
|
get { return _amount_list; }
|
|
set { _amount_list = value; }
|
|
}
|
|
/// <summary>
|
|
/// 申请金额
|
|
/// </summary>
|
|
public decimal ApplyAmount
|
|
{
|
|
get { return _apply_amount; }
|
|
set { _apply_amount = value; }
|
|
}
|
|
/// <summary>
|
|
/// 金额大写
|
|
/// </summary>
|
|
public string AmountCapital
|
|
{
|
|
get { return _amount_capital; }
|
|
set { _amount_capital = value; }
|
|
}
|
|
/// <summary>
|
|
/// 币别
|
|
/// </summary>
|
|
public string Currency
|
|
{
|
|
get { return _currency; }
|
|
set { _currency = value; }
|
|
}
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remark
|
|
{
|
|
get { return _remark; }
|
|
set { _remark = value; }
|
|
}
|
|
/// <summary>
|
|
/// 申请人
|
|
/// </summary>
|
|
public string Applicant
|
|
{
|
|
get { return _applicant; }
|
|
set { _applicant = value; }
|
|
}
|
|
/// <summary>
|
|
/// 申请时间
|
|
/// </summary>
|
|
public DateTime ApplyTime
|
|
{
|
|
get { return _apply_time; }
|
|
set { _apply_time = value; }
|
|
}
|
|
/// <summary>
|
|
/// 提交时间
|
|
/// </summary>
|
|
public DateTime EnterTime
|
|
{
|
|
get { return _enter_time; }
|
|
set { _enter_time = value; }
|
|
}
|
|
/// <summary>
|
|
/// 开出人
|
|
/// </summary>
|
|
public string Operator
|
|
{
|
|
get { return _operator; }
|
|
set { _operator = value; }
|
|
}
|
|
/// <summary>
|
|
/// 开出时间
|
|
/// </summary>
|
|
public DateTime OperateTime
|
|
{
|
|
get { return _operate_time; }
|
|
set { _operate_time = value; }
|
|
}
|
|
/// <summary>
|
|
/// 主题单号
|
|
/// </summary>
|
|
public string MBLNO
|
|
{
|
|
get { return _mblno; }
|
|
set { _mblno = value; }
|
|
}
|
|
/// <summary>
|
|
/// 是否已经提交
|
|
/// </summary>
|
|
public bool IsApply
|
|
{
|
|
get { return _is_apply; }
|
|
set { _is_apply = value; }
|
|
}
|
|
/// <summary>
|
|
/// 是否删除
|
|
/// </summary>
|
|
public bool IsDelete
|
|
{
|
|
get { return _is_delete; }
|
|
set { _is_delete = value; }
|
|
}
|
|
/// <summary>
|
|
/// 删除操作人
|
|
/// </summary>
|
|
public string DeleteUser
|
|
{
|
|
get { return _delete_user; }
|
|
set { _delete_user = value; }
|
|
}
|
|
/// <summary>
|
|
/// 删除操作时间
|
|
/// </summary>
|
|
public DateTime DeleteTime
|
|
{
|
|
get { return _delete_time; }
|
|
set { _delete_time = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|