You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
863 B
37 lines
863 B
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace Entity.Sugar
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("OTB_SYS_OnlineUsers")]
|
|
public partial class OTB_SYS_OnlineUsers : ModelContext
|
|
{
|
|
public OTB_SYS_OnlineUsers(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|
public string OrgID {get;set;}
|
|
public const string CN_ORGID = "OrgID";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|
public string UserID {get;set;}
|
|
public const string CN_USERID = "UserID";
|
|
|
|
}
|
|
}
|