using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.Domain.Dto.LivePlayback { public class LivePlaybackSummayPageDto : LiveSearchPageDto { /// /// 员工姓名 /// [JsonPropertyName("employee_name")] public string? EmployeeName { get; set; } /// /// 客户ID /// [JsonPropertyName("resid")] public string? Resid { get; set; } /// /// 客户昵称 /// [JsonPropertyName("nickname")] public string? Nickname { get; set; } /// /// 排序 /// [JsonPropertyName("sortBy")] public string? SortBy { get; set; } /// /// 课程名称 /// [JsonPropertyName("title")] public string? Title { get; set; } /// /// 是否为员工账号1:是,0:否 /// [JsonPropertyName("user_type")] public int? UserType { get; set; } /// /// 好友关系 1:是,0:否 /// [JsonPropertyName("is_wework")] public int? IsWework { get; set; } /// /// 回放天数大于 /// [JsonPropertyName("watch_day_from")] public int? WatchDayFrom { get; set; } /// /// 回放天数小于 /// [JsonPropertyName("watch_day_to")] public int? WatchDayTo { get; set; } /// /// 回放开始日期 /// [JsonPropertyName("act_date_from")] public string? ActDateFrom { get; set; } /// /// 回放结束日期 /// [JsonPropertyName("act_date_to")] public string? ActDateTo { get; set; } /// /// 直播开始进入日期 /// [JsonPropertyName("entry_time_from")] public string? EntryTimeFrom { get; set; } /// /// 直播结束进入日期 /// [JsonPropertyName("entry_time_to")] public string? EntryTimeTo { get; set; } /// /// 平均回放时长大于等于 /// [JsonPropertyName("avg_watch_time_from")] public string? AvgWatchTimeFrom { get; set; } /// /// 平均回放时长小于于等于 /// [JsonPropertyName("avg_watch_time_to")] public string? AvgWatchTimeTo { get; set; } /// /// 课程ID /// [JsonPropertyName("scheduleid")] public int? Scheduleid { get; set; } /// /// 课程日期 /// [JsonPropertyName("living_date")] public string? LivingDate { get; set; } /// /// 组别id /// [JsonPropertyName("groupid")] public decimal? Groupid { get; set; } /// /// 听课天数 /// [JsonPropertyName("watch_days")] public decimal? WatchDays { get; set; } /// /// 是否连麦 /// [JsonPropertyName("is_online")] public int? IsOnline { get; set; } /// /// 1表示直播中,0表示直播结束 /// [JsonPropertyName("is_living")] public int? IsLiving { get; set; } /// /// 进线时间 /// [JsonPropertyName("create_time_from")] public string? CreateTimeFrom { get; set; } /// /// 进线时间 /// [JsonPropertyName("create_time_to")] public string? CreateTimeTo { get; set; } /// /// 是否去重 /// [JsonPropertyName("whole")] public int? Whole { get; set; } /// /// 员工状态 1: 在职 2: 离职 /// [JsonPropertyName("employee_status")] public int? EmployeeStatus { get; set; } /// /// 课程ID /// [JsonPropertyName("scheduleids")] public string? Scheduleids { get; set; } /// /// 是否邀请 1 是 2否 /// [JsonPropertyName("only_invite")] public int? Onlyinvite { get; set; } /// /// 是否归属 1 是 0 否 /// [JsonPropertyName("is_belong")] public int? IsBelong { get; set; } } }