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 = "sMsExesqlQry", DisableSyncStructure = true)] public partial class SMsExesqlQry { [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 = "@sSQL", StringLength = -2, IsNullable = false)] public string SSQL { get; set; } } }