using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Sugar.Enties
{
///
///
///
[SugarTable("usersconsole")]
public partial class usersconsole
{
public usersconsole(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string StaffCode {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string FuncID {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string FuncClass {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string FuncClassName {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string SysID {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? OrderCode {get;set;}
///
/// Desc:
/// Default:DateTime.Now
/// Nullable:False
///
public DateTime SysDateTime {get;set;}
}
}