52 lines
930 B
C#
52 lines
930 B
C#
|
|
using System;
|
|||
|
|
namespace Mtxfw.Model
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// city:ʵ<><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_Subplate
|
|||
|
|
{
|
|||
|
|
#region Model
|
|||
|
|
private int _id;
|
|||
|
|
private int _LeaderID;//<2F>鳤ID;
|
|||
|
|
private DateTime _SubTime;//<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>
|
|||
|
|
private int _SubType;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int id
|
|||
|
|
{
|
|||
|
|
set{ _id=value;}
|
|||
|
|
get{return _id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int LeaderID
|
|||
|
|
{
|
|||
|
|
set { _LeaderID = value; }
|
|||
|
|
get { return _LeaderID; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime SubTime
|
|||
|
|
{
|
|||
|
|
set { _SubTime = value; }
|
|||
|
|
get { return _SubTime; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int SubType
|
|||
|
|
{
|
|||
|
|
set { _SubType = value; }
|
|||
|
|
get { return _SubType; }
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|