28 lines
819 B
C#
28 lines
819 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity.Dncmsbase
|
|
{
|
|
[Table("ZhiboSystemSchedulesPlayback")]
|
|
public class ZhiboSystemSchedulesPlayback
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
|
|
public int scheduleid { get; set; }
|
|
public string? title { get; set; }
|
|
public string? thumb { get; set; }
|
|
public string? intro { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public string? url { get; set; }
|
|
public int? recordid { get; set; }
|
|
public int? status { get; set; }
|
|
public int? istop { get; set; }
|
|
public DateTime? zbdate { get; set; }
|
|
|
|
public List<LiveAuditLogPlayBack>? LiveAuditLogPlayBack { get; set; }
|
|
}
|
|
} |