using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { public partial class ORD_SALEMEMO { [Required(ErrorMessage = "必填!")] [StringLength(2000, ErrorMessage = "不能超过2000个字符")] [NotMapped] public string STRCONTENT { get; set; } } }