using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.Domain.Dto.CRM { public class NotificationStatisticsSearchPageDto : ListSearchPageDto { [JsonPropertyName("sortBy")] public string? SortBy { get; set; } [JsonPropertyName("name")] public string? Name { get; set; } [JsonPropertyName("resid")] public string? ResId { get; set; } [JsonPropertyName("Umid")] public string? Umid { get; set; } [JsonPropertyName("eid")] public decimal? Eid { get; set; } [JsonPropertyName("ename")] public string? Ename { get; set; } [JsonPropertyName("end_time_from")] public string? StartTime { get; set; } [JsonPropertyName("end_time_to")] public string? EndTime { get; set; } [JsonPropertyName("repeat_ename")] public string? RepeatEname { get; set; } [JsonPropertyName("repeat_eid")] public decimal? RepeatEid { get; set; } [JsonPropertyName("repeat_start_time_from")] public string? RepeatStartTime { get; set; } [JsonPropertyName("repeat_start_time_to")] public string? RepeatEndTime { get; set; } [JsonPropertyName("deptid")] public decimal? DeptId { get; set; } [JsonPropertyName("repeat_type")] public int? RepeatType { get; set; } [JsonPropertyName("cross_dept")] public int? CrossDept { get; set; } [JsonPropertyName("repeat_deptid")] public decimal? RepeatDeptId { get; set; } [JsonPropertyName("deptids")] public string? Deptids { get; set; } [JsonPropertyName("repeat_deptids")] public string? RepeatDeptids { get; set; } [JsonPropertyName("exclude_repeat_eids")] public string? ExcludeRepeatEids { get; set; } [JsonPropertyName("show_deptids")] public string? ShowDeptids { get; set; } /// /// 员工工号 /// [JsonIgnore] public decimal? UserId { get; set; } /// /// 员工工号 /// [JsonPropertyName("show_eid")] public decimal? ShowEid { get; set; } /// /// 组别id /// [JsonPropertyName("show_groupids")] public string? ShowGroupIds { get; set; } /// /// 销售组id /// [JsonIgnore] //[JsonPropertyName("txt_groupIds")] public decimal? Txt_groupIds { get; set; } /// /// 销售部门id /// [JsonIgnore] //[JsonPropertyName("txt_deptId")] public decimal? Txt_deptId { get; set; } } }