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 = "sys_template_set", DisableSyncStructure = true)] public partial class SysTemplateSet { /// /// 代码 /// [JsonProperty, Column(DbType = "varchar(10)", IsPrimary = true, IsNullable = false)] public string TEMPLATEID { get; set; } /// /// 尺码小数位 /// [JsonProperty, Column(Name = "CBM_DIGITAL")] public short? CBMDIGITAL { get; set; } = 2; /// /// 货描内容设置 /// [JsonProperty, Column(Name = "DESCRIPTION_SETS", DbType = "varchar(4000)")] public string DESCRIPTIONSETS { get; set; } /// /// 毛重小数位 /// [JsonProperty, Column(Name = "KGS_DIGITAL")] public short? KGSDIGITAL { get; set; } = 2; /// /// 唛头内容 /// [JsonProperty, Column(Name = "MARKS_SET", DbType = "varchar(4000)")] public string MARKSSET { get; set; } } }