using FreeSql.DataAnnotations; using Newtonsoft.Json; using System; namespace djy.Model.Ams { [JsonObject(MemberSerialization.OptIn), Table(Name = "CodeCountry", DisableSyncStructure = true)] public class CodeCountry { /// /// 主键 /// [JsonProperty, Column(IsPrimary = true, IsNullable = false)] public string GID { get; set; } /// /// AMScode /// public string Code { get; set; } public string EnName { get; set; } public string CnName { get; set; } public string Capital { get; set; } public string Continent { get; set; } public string Description { get; set; } public string Remark { get; set; } public DateTime? CreateTime { get; set; } public DateTime? ModifyTime { get; set; } public string CreateUser { get; set; } public string ModifyUser { get; set; } } }