using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace YLErp.DBModels { [Table("valuedate_history")] public class valuedate_history : DBModelBase { public const string 系统参数 = "系统参数"; /// /// 字段类型 /// [DisplayName("字段类型")] public string Type { get; set; } /// /// 创建时间_createdate /// [DisplayName("创建时间")] public DateTime? CreateDate { get; set; } /// /// 数据 /// [DisplayName("数据")] public string Data { get; set; } /// /// 操作类型 /// [DisplayName("操作类型")] public string OptionType { get; set; } /// /// 操作人ID /// [DisplayName("操作人")] public virtual int? OptId { set; get; } /// /// 操作人名称 /// [DisplayName("操作人")] public virtual string OptName { set; get; } } }