using System; using System.Linq; using System.Text; using SqlSugar; namespace Sugar.Enties { /// /// /// [SugarTable("log")] public partial class log { public log(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int autoid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string staffcode {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string username {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? dindate {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? doutdate {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string ip {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string form {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string page {get;set;} /// /// Desc:状态:0 在线 1 退出 /// Default: /// Nullable:True /// public string status {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string memo {get;set;} } }