using System; using System.Data; using System.Configuration; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; namespace DSWeb.Models { public class FeeModifyEntity { #region 私有成员 private string _gid;//主键唯一值 private int _type;//收付类型 值1为应收费用 值2为应付费用 private string _fee_id;//费用GID private string _bsno;//委托编号GID private int _apply_type;//申请类型 private string _reason;//申请原因 private string _fee_name;//费用名称 private string _customer_name;//客户名称 private string _unit;//单位标准 private decimal _unit_price;//单价 private decimal _quantity;//数量 private decimal _amount;//金额 private string _currency;//币别 private string _frt;//FRT private decimal _commission_rate;//佣金比率 private decimal _exchange_rate;//汇率 private bool _is_advance_pay;//是否垫付 private string _audit_user;//审核人 private DateTime _audit_time;//审核时间 private string _apply_user;//申请人 private DateTime _apply_time;//申请时间 private int _apply_status;//申请状态 private string _remark;//备注 private string _groupid;//分组关联GID #endregion public FeeModifyEntity() { } #region 读写属性 /// /// 主键唯一值 /// public string GID { get { return _gid; } set { _gid = value; } } /// /// 收付类型 值1为应收费用 值2为应付费用 /// public int Type { get { return _type; } set { _type = value; } } /// /// 费用GID /// public string FeeID { get { return _fee_id; } set { _fee_id = value; } } /// /// 委托编号GID /// public string BSNO { get { return _bsno; } set { _bsno = value; } } /// /// 申请类型 /// public int ApplyType { get { return _apply_type; } set { _apply_type = value; } } /// /// 申请原因 /// public string Reason { get { return _reason; } set { _reason = value; } } /// /// 费用名称 /// public string FeeName { get { return _fee_name; } set { _fee_name = value; } } /// /// 客户名称 /// public string CustomerName { get { return _customer_name; } set { _customer_name = value; } } /// /// 单位标准 /// public string Unit { get { return _unit; } set { _unit = value; } } /// /// 单价 /// public decimal UnitPrice { get { return _unit_price; } set { _unit_price = value; } } /// /// 数量 /// public decimal Quantity { get { return _quantity; } set { _quantity = value; } } /// /// 金额 /// public decimal Amount { get { return _amount; } set { _amount = value; } } /// /// 币别 /// public string Currency { get { return _currency; } set { _currency = value; } } /// /// FRT /// public string FRT { get { return _frt; } set { _frt = value; } } /// /// 佣金比率 /// public decimal CommissionRate { get { return _commission_rate; } set { _commission_rate = value; } } /// /// 汇率 /// public decimal ExchangeRate { get { return _exchange_rate; } set { _exchange_rate = value; } } /// /// 是否垫付 /// public bool IsAdvancePay { get { return _is_advance_pay; } set { _is_advance_pay = value; } } /// /// 审核人 /// public string AuditUser { get { return _audit_user; } set { _audit_user = value; } } /// /// 审核时间 /// public DateTime AuditTime { get { return _audit_time; } set { _audit_time = value; } } /// /// 申请人 /// public string ApplyUser { get { return _apply_user; } set { _apply_user = value; } } /// /// 申请时间 /// public DateTime ApplyTime { get { return _apply_time; } set { _apply_time = value; } } /// /// 申请状态 /// public int ApplyStatus { get { return _apply_status; } set { _apply_status = value; } } /// /// 备注信息 /// public string Remark { get { return _remark; } set { _remark = value; } } /// /// 分组关联GID /// public string GroupID { get { return _groupid; } set { _groupid = value; } } #endregion } }