41 lines
890 B
C#
41 lines
890 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity.Hgaction
|
|
{
|
|
[Table("t_live_info")]
|
|
public class LiveInfo
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public int Deptid { get; set; }
|
|
|
|
[Column("live_id")]
|
|
public int LiveId { get; set; }
|
|
|
|
[Column("platform_id")]
|
|
public int PlatformId { get; set; }
|
|
|
|
public string? Platform { get; set; }
|
|
|
|
[Column("schedule_id")]
|
|
public int ScheduleId { get; set; }
|
|
|
|
public string? Schedule { get; set; }
|
|
|
|
public string? Liver { get; set; }
|
|
|
|
[Column("live_url")]
|
|
public string? LiveUrl { get; set; }
|
|
|
|
[Column("live_title")]
|
|
public string? LiveTitle { get; set; }
|
|
|
|
public DateTime Ctime { get; set; } = DateTime.Now;
|
|
}
|
|
}
|