namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.HIS_ORD_MEMOCONTENT")] public partial class HIS_ORD_MEMOCONTENT { [Key] public decimal CONTENTID { get; set; } [StringLength(2000)] public string STRCONTENT { get; set; } public DateTime? CTIME { get; set; } } }