using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Domain.Dto.Live
{
public class LiveSearchUserSummayPageDto : LiveSearchPageDto
{
///
/// 员工姓名
///
[JsonPropertyName("employee_name")]
public string? EmployeeName { get; set; }
///
/// 客户昵称
///
[JsonPropertyName("nickname")]
public string? Nickname { get; set; }
///
/// 直播中互动,1:有,0:无
///
[JsonPropertyName("interaction")]
public int? Interaction { get; set; }
///
/// 课程名称
///
[JsonPropertyName("title")]
public string? Title { get; set; }
///
/// 排序
///
[JsonPropertyName("sortBy")]
public string? SortBy { get; set; }
///
/// 是否为员工账号1:是,0:否
///
[JsonPropertyName("user_type")]
public int? UserType { get; set; }
///
/// 好友关系 1:是,0:否
///
[JsonPropertyName("is_wework")]
public int? IsWework { get; set; }
///
/// 听课时长大于
///
[JsonPropertyName("watch_time_from")]
public int? WatchTimeFrom { get; set; }
///
/// 听课时长小于
///
[JsonPropertyName("watch_time_to")]
public int? WatchTimeTo { get; set; }
///
/// 直播开始进入日期
///
[JsonPropertyName("entry_time_from")]
public string? EntryTimeFrom { get; set; }
///
/// 直播结束进入日期
///
[JsonPropertyName("entry_time_to")]
public string? EntryTimeTo { 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; }
}
}