using System; using System.ComponentModel.DataAnnotations; namespace CRM.Core.Model.EntityAudit { public class B_Audit_Items { [Key] public int Id { get; set; } /// /// /// 默认值: /// public string Item { get; set; } /// /// /// 默认值: /// public string Channel { get; set; } /// /// /// 默认值: /// public string Channelquery { get; set; } /// /// /// 默认值: /// public string Subqueryitems { get; set; } /// /// /// 默认值: /// public string Querytype { get; set; } /// /// 父节点Id /// public int ParentId { get; set; } /// /// /// public DateTime? Ctime { get; set; } public int Sort { get; set; } } }