117 lines
2.9 KiB
C#
117 lines
2.9 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 是否只展示开课部门客户
|
|
/// </summary>
|
|
[JsonPropertyName("only_dept")]
|
|
public int OnlyDept { get; set; } = 1;
|
|
|
|
/// <summary>
|
|
/// 客户ID
|
|
/// </summary>
|
|
[JsonPropertyName("resid")]
|
|
public string? Resid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户ID
|
|
/// </summary>
|
|
[JsonPropertyName("umid")]
|
|
public string? Umid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 销售部门id
|
|
/// </summary>
|
|
[JsonPropertyName("living_deptids")]
|
|
public string? LivingDeptIds { get; set; }
|
|
|
|
/// <summary>
|
|
/// 员工工号
|
|
/// </summary>
|
|
[JsonIgnore]
|
|
//[JsonPropertyName("userId")]
|
|
public decimal? UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 组别id
|
|
/// </summary>
|
|
[JsonPropertyName("groupids")]
|
|
public string? GroupIds { get; set; }
|
|
|
|
/// <summary>
|
|
/// 销售组id
|
|
/// </summary>
|
|
[JsonIgnore]
|
|
//[JsonPropertyName("txt_groupIds")]
|
|
public string? Txt_groupIds { get; set; }
|
|
|
|
/// <summary>
|
|
/// 销售部门id
|
|
/// </summary>
|
|
[JsonIgnore]
|
|
//[JsonPropertyName("txt_deptId")]
|
|
public string? Txt_deptId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 部门ID
|
|
/// </summary>
|
|
[JsonPropertyName("deptid")]
|
|
public decimal? Deptid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 部门ID
|
|
/// </summary>
|
|
[JsonPropertyName("deptids")]
|
|
public string? Deptids { get; set; }
|
|
|
|
/// <summary>
|
|
/// 员工工号
|
|
/// </summary>
|
|
[JsonPropertyName("eid")]
|
|
public decimal? Eid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 企业号
|
|
/// </summary>
|
|
[JsonPropertyName("appid")]
|
|
public string? Appid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 企微客服id
|
|
/// </summary>
|
|
[JsonPropertyName("userid")]
|
|
public string? Customerid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 企业号
|
|
/// </summary>
|
|
[JsonPropertyName("app_name")]
|
|
public string? Appname { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排除这个事业部关系
|
|
/// </summary>
|
|
[JsonPropertyName("exclude_deptid")]
|
|
public int? ExcludeDeptid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 直播开始日期
|
|
/// </summary>
|
|
[JsonPropertyName("living_date_from")]
|
|
public string? LivingDateFrom { get; set; }
|
|
|
|
/// <summary>
|
|
/// 直播结束日期
|
|
/// </summary>
|
|
[JsonPropertyName("living_date_to")]
|
|
public string? LivingDateTo { get; set; }
|
|
}
|
|
}
|