using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { [Serializable] public class EPAY_DOWNFILE_LOG { public EPAY_DOWNFILE_LOG() { } #region Model private DateTime? _downdate; private DateTime _billdate; private string _downfilename; private string _downpath; private string _downuserid; private string _downuser; private int? _paytype; /// /// /// public DateTime? DOWNDATE { set { _downdate = value; } get { return _downdate; } } /// /// /// public DateTime BILLDATE { set { _billdate = value; } get { return _billdate; } } /// /// /// public string DOWNFILENAME { set { _downfilename = value; } get { return _downfilename; } } /// /// /// public string DOWNPATH { set { _downpath = value; } get { return _downpath; } } /// /// /// public string DOWNUSERID { set { _downuserid = value; } get { return _downuserid; } } /// /// /// public string DOWNUSER { set { _downuser = value; } get { return _downuser; } } public int? PAYTYPE { set { _paytype = value; } get { return _paytype; } } #endregion Model } }