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 = "code_template", DisableSyncStructure = true)] public partial class CodeTemplate { /// /// 代码 /// [JsonProperty, Column(DbType = "varchar(10)", IsPrimary = true, IsNullable = false)] public string TEMPLATEID { get; set; } /// /// 模板名称 /// [JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)] public string TEMPLATE { get; set; } /// /// 说明 /// [JsonProperty, Column(DbType = "varchar(20)")] public string TEMPLATEEXPLAIN { get; set; } } }