using FreeSql.DataAnnotations; using Newtonsoft.Json; using System; using System.ComponentModel.DataAnnotations; namespace djy.Model.Ams { [JsonObject(MemberSerialization.OptIn), Table(Name = "CodeCtn", DisableSyncStructure = true)] public class CodeCtn { [JsonProperty, Column(IsPrimary = true, IsNullable = false)] [MaxLength(36)] public string GID { get; set; } [MaxLength(20)] public string Code { get; set; } public int? Size { get; set; } [MaxLength(100)] public string Name { get; set; } [MaxLength(10)] public string EdiCode { get; set; } [MaxLength(4000)] public string Description { 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; } } }