94 lines
2.1 KiB
C#
94 lines
2.1 KiB
C#
|
|
using System;
|
|||
|
|
namespace Mtxfw.Model
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// user_info:ʵ<><CAB5><EFBFBD><EFBFBD>(<28><><EFBFBD><EFBFBD>˵<EFBFBD><CBB5><EFBFBD>Զ<EFBFBD><D4B6><EFBFBD>ȡ<EFBFBD><C8A1><EFBFBD>ݿ<EFBFBD><DDBF>ֶε<D6B6><CEB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ)
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public partial class user_RestDay
|
|||
|
|
{
|
|||
|
|
public user_RestDay()
|
|||
|
|
{ }
|
|||
|
|
#region Model
|
|||
|
|
private Int64 _id;
|
|||
|
|
private int _MemberId;//<2F><>ԱID
|
|||
|
|
private int _IFLeday;//<2F><><EFBFBD>з<EFBFBD><D0B7><EFBFBD><EFBFBD>ڼ<EFBFBD><DABC><EFBFBD>
|
|||
|
|
private string _Startdate;//<2F><>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>
|
|||
|
|
private string _Enddate;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
private int _utype;//0<>ڼ<EFBFBD><DABC><EFBFBD>1<EFBFBD><31>Ϣ<EFBFBD><CFA2>
|
|||
|
|
private DateTime _addtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
|||
|
|
private int _gtype; //<2F><><EFBFBD><EFBFBD>
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public Int64 Id
|
|||
|
|
{
|
|||
|
|
set { _id = value; }
|
|||
|
|
get { return _id; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int MemberId
|
|||
|
|
{
|
|||
|
|
set { _MemberId = value; }
|
|||
|
|
get { return _MemberId; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int IFLeday
|
|||
|
|
{
|
|||
|
|
set { _IFLeday = value; }
|
|||
|
|
get { return _IFLeday; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string Startdate
|
|||
|
|
{
|
|||
|
|
set { _Startdate = value; }
|
|||
|
|
get { return _Startdate; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string Enddate
|
|||
|
|
{
|
|||
|
|
set { _Enddate = value; }
|
|||
|
|
get { return _Enddate; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// utype
|
|||
|
|
/// </summary>
|
|||
|
|
public int utype
|
|||
|
|
{
|
|||
|
|
set { _utype = value; }
|
|||
|
|
get { return _utype; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// utype
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime addtime
|
|||
|
|
{
|
|||
|
|
set { _addtime = value; }
|
|||
|
|
get { return _addtime; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int gtype
|
|||
|
|
{
|
|||
|
|
set { _gtype = value; }
|
|||
|
|
get { return _gtype; }
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|