using FreeSql.DataAnnotations; using Newtonsoft.Json; using System; using System.ComponentModel.DataAnnotations; namespace Common.DJYModel { [JsonObject(MemberSerialization.OptIn), Table(Name = "MappingCtn", DisableSyncStructure = true)] public class MappingCtn { [JsonProperty, Column(IsPrimary = true, IsNullable = false)] [MaxLength(36)] public string GID { get; set; } [MaxLength(20)] public string Code { get; set; } [MaxLength(20)] public string CarrierCode { get; set; } [MaxLength(20)] public string Module { get; set; } [MaxLength(50)] public string MapCode { get; set; } [MaxLength(200)] public string MapName { get; set; } [MaxLength(500)] public string Remark { 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; } } }