ComplianceServer/code/Hg.Core.Domain/Dto/Live/SearchLiveSystemPlanDto.cs

38 lines
922 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Domain.Dto.Live
{
public class SearchLiveSystemPlanDto : SearchPageBase
{
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
/// <summary>
/// 播前报备
/// </summary>
public string? BeforeStatus { get; set; }
/// <summary>
/// 播中检查
/// </summary>
public int? DuringStatus { get; set; }
/// <summary>
/// 播后质检
/// </summary>
public int? AfterStatus { get; set; }
/// <summary>
/// 直播用途
/// </summary>
public int? Usetype { get; set; }
public string? DeptId { get; set; }
public string? Eid { get; set; }
public string? Reason { get; set; }
}
}