using FreeSql.DataAnnotations; using Newtonsoft.Json; using System; using System.ComponentModel.DataAnnotations; namespace djy.Model.Ams { [JsonObject(MemberSerialization.OptIn), Table(Name = "AMS_AddrTemplate", DisableSyncStructure = true)] public class AMS_AddrTemplate { [JsonProperty, Column(IsPrimary = true, IsNullable = false)] public string GID { get; set; } [MaxLength(50)] public string TemPlateName { get; set; } [MaxLength(50)] public string Type { get; set; } [MaxLength(50)] public string Name { get; set; } [MaxLength(200)] public string ADDR { get; set; } [MaxLength(50)] public string Country { get; set; } [MaxLength(50)] public string CountryCode { get; set; } [MaxLength(50)] public string City { get; set; } [MaxLength(50)] public string Tel { get; set; } public bool? IsDel { get; set; } [MaxLength(50)] public string UserID { get; set; } [MaxLength(50)] public string UserName { get; set; } [MaxLength(50)] public string CompID { get; set; } [MaxLength(100)] public string CompName { get; set; } public DateTime CreateTime { get; set; } public DateTime? LastUpdate { get; set; } } }