using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Entity.Dncmsbase { [Table("LiveAuditLogPlayBack")] public class LiveAuditLogPlayBack { [Key] public int? id { get; set; } public int? logId { get; set; } public int? playBackId { get; set; } public ZhiboSystemSchedulesPlayback? ZhiboSystemSchedulesPlayback { get; set; } public CMS_LiveAuditLog? CMS_LiveAuditLog { get; set; } } }