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_BusinessHours
|
|||
|
|
{
|
|||
|
|
public user_BusinessHours()
|
|||
|
|
{ }
|
|||
|
|
#region Model
|
|||
|
|
private Int64 _id;
|
|||
|
|
private int _MemberId;//<2F><>ԱID
|
|||
|
|
private string _Starttime;//<2F><>ʼʱ<CABC><CAB1>
|
|||
|
|
private int _EndtimeType;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30><EFBFBD><EFBFBD>1<EFBFBD><31>2<EFBFBD><32>
|
|||
|
|
private string _Endtime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
|||
|
|
private int _utype;//0Ӫҵʱ<D2B5><CAB1>
|
|||
|
|
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 EndtimeType
|
|||
|
|
{
|
|||
|
|
set { _EndtimeType = value; }
|
|||
|
|
get { return _EndtimeType; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string Starttime
|
|||
|
|
{
|
|||
|
|
set { _Starttime = value; }
|
|||
|
|
get { return _Starttime; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string Endtime
|
|||
|
|
{
|
|||
|
|
set { _Endtime = value; }
|
|||
|
|
get { return _Endtime; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <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
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|