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 = "sMsWlBsAfterSave", DisableSyncStructure = true)] public partial class SMsWlBsAfterSave { [JsonProperty, Column(Name = "@pi_Result", IsIdentity = true)] public int PiResult { get; set; } [JsonProperty, Column(Name = "@ps_Gid", DbType = "varchar(100)", IsNullable = false)] public string PsGid { get; set; } [JsonProperty, Column(Name = "@ps_Message", DbType = "varchar(2000)", IsIdentity = true, IsNullable = false)] public string PsMessage { get; set; } [JsonProperty, Column(Name = "@ps_UserCode", DbType = "varchar(10)", IsNullable = false)] public string PsUserCode { get; set; } [JsonProperty, Column(Name = "@ps_UserName", DbType = "varchar(150)", IsNullable = false)] public string PsUserName { get; set; } } }