using Ant.Core.SqlServer.BaseEntities; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace Central.Control.WebApi.DbEntity { /// /// YW_OrderLog订单日志表 /// public class YW_OrderLog : BaseEntity { /// /// 主键ID /// [Key] [MaxLength(50)] public string Id { set; get; } = string.Empty; /// /// 订单id /// [MaxLength(50)] [Required(AllowEmptyStrings = true)] public string OrderId { set; get; } = string.Empty; /// /// 日志标题 /// [MaxLength(50)] [Required(AllowEmptyStrings = true)] public string Title { set; get; } = string.Empty; /// /// 操作内容 /// [MaxLength(500)] [Required(AllowEmptyStrings = true)] public string Content { set; get; } = string.Empty; } }