using FreeSql.DatabaseModel;using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Newtonsoft.Json; using FreeSql.DataAnnotations; namespace djy.Model { [JsonObject(MemberSerialization.OptIn), Table(Name = "P_userRight_Ename", DisableSyncStructure = true)] public partial class PUserRightEname { [JsonProperty, Column(Name = "@oper", DbType = "varchar(50)", IsNullable = false)] public string Oper { get; set; } [JsonProperty, Column(Name = "@pi_Result", IsIdentity = true)] public int PiResult { get; set; } [JsonProperty, Column(Name = "@ps_Message", DbType = "varchar(2000)", IsIdentity = true, IsNullable = false)] public string PsMessage { get; set; } [JsonProperty, Column(Name = "@strCondition", DbType = "varchar(1000)", IsNullable = false)] public string StrCondition { get; set; } } }