using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Entity.HgCrm { public class OrdMemoContent { [Key] public decimal CONTENTID { get; set; } [StringLength(2000)] public string? STRCONTENT { get; set; } public DateTime? CTIME { get; set; } } }