using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.Domain.Dto.Live { public class LiveSearchPageDto : ListSearchPageDto { /// /// 是否只展示开课部门客户 /// [JsonPropertyName("only_dept")] public int OnlyDept { get; set; } = 1; /// /// 客户ID /// [JsonPropertyName("resid")] public string? Resid { get; set; } /// /// 客户ID /// [JsonPropertyName("umid")] public string? Umid { get; set; } /// /// 销售部门id /// [JsonPropertyName("living_deptids")] public string? LivingDeptIds { get; set; } /// /// 员工工号 /// [JsonIgnore] //[JsonPropertyName("userId")] public decimal? UserId { get; set; } /// /// 组别id /// [JsonPropertyName("groupids")] public string? GroupIds { get; set; } /// /// 销售组id /// [JsonIgnore] //[JsonPropertyName("txt_groupIds")] public string? Txt_groupIds { get; set; } /// /// 销售部门id /// [JsonIgnore] //[JsonPropertyName("txt_deptId")] public string? Txt_deptId { get; set; } /// /// 部门ID /// [JsonPropertyName("deptid")] public decimal? Deptid { get; set; } /// /// 部门ID /// [JsonPropertyName("deptids")] public string? Deptids { get; set; } /// /// 员工工号 /// [JsonPropertyName("eid")] public decimal? Eid { get; set; } /// /// 企业号 /// [JsonPropertyName("appid")] public string? Appid { get; set; } /// /// 企微客服id /// [JsonPropertyName("userid")] public string? Customerid { get; set; } /// /// 企业号 /// [JsonPropertyName("app_name")] public string? Appname { get; set; } /// /// 排除这个事业部关系 /// [JsonPropertyName("exclude_deptid")] public int? ExcludeDeptid { get; set; } /// /// 直播开始日期 /// [JsonPropertyName("living_date_from")] public string? LivingDateFrom { get; set; } /// /// 直播结束日期 /// [JsonPropertyName("living_date_to")] public string? LivingDateTo { get; set; } } }