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