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 = "proc_isClientUpdate", DisableSyncStructure = true)] public partial class ProcIsClientUpdate { [JsonProperty, Column(Name = "@GID", DbType = "varchar(36)", IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(Name = "@newCODENAME", DbType = "varchar(20)", IsNullable = false)] public string NewCODENAME { get; set; } [JsonProperty, Column(Name = "@newDESCRIPTION", DbType = "varchar(50)", IsNullable = false)] public string NewDESCRIPTION { get; set; } [JsonProperty, Column(Name = "@newSHORTNAME", DbType = "varchar(20)", IsNullable = false)] public string NewSHORTNAME { get; set; } [JsonProperty, Column(Name = "@oldCODENAME", DbType = "varchar(20)", IsNullable = false)] public string OldCODENAME { get; set; } [JsonProperty, Column(Name = "@oldDESCRIPTION", DbType = "varchar(50)", IsNullable = false)] public string OldDESCRIPTION { get; set; } [JsonProperty, Column(Name = "@oldSHORTNAME", DbType = "varchar(20)", IsNullable = false)] public string OldSHORTNAME { get; set; } [JsonProperty, Column(Name = "@strUserID", DbType = "varchar(36)", IsNullable = false)] public string StrUserID { get; set; } [JsonProperty, Column(Name = "@strUserName", DbType = "varchar(150)", IsNullable = false)] public string StrUserName { get; set; } } }