using FreeSql.DataAnnotations; using Newtonsoft.Json; using System; using System.ComponentModel.DataAnnotations; namespace djy.Model.Ams { [JsonObject(MemberSerialization.OptIn), Table(Name = "CodeCity", DisableSyncStructure = true)] public class CodeCity { [MaxLength(36)] public string GID { get; set; } [MaxLength(50)] public string Code { get; set; } [MaxLength(20)] public string ProvinceCode { get; set; } [MaxLength(50)] public string ProvinceName { get; set; } [MaxLength(50)] public string CNName { get; set; } [MaxLength(50)] public string EnName { get; set; } [MaxLength(500)] public string Remark { get; set; } [MaxLength(20)] public string AreaCode { get; set; } [MaxLength(50)] public string PostCode { get; set; } public DateTime CreateTime { get; set; } public DateTime? ModifyTime { get; set; } [MaxLength(36)] public string CreateUser { get; set; } [MaxLength(36)] public string ModifyUser { get; set; } } }