using System.ComponentModel.DataAnnotations.Schema; namespace YLErp.DBModels { /// /// 客户黑名单审批及操作日志。 /// [Table("client_blacklog")] public class ClientBlackLog { public long id { get; set; } public int ClientBlackId { get; set; } public string Changes { get; set; } public string OptType { get; set; } public string DataType { get; set; } public int OptId { get; set; } public string OptName { get; set; } public DateTime OptDate { get; set; } } [NotMapped] public class ClientBlackLogDto : ClientBlackLog { } }