104 lines
2.8 KiB
C#
104 lines
2.8 KiB
C#
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; }
|
|
|
|
/// <summary>
|
|
/// 员工工号
|
|
/// </summary>
|
|
[JsonIgnore]
|
|
public decimal? UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 员工工号
|
|
/// </summary>
|
|
[JsonPropertyName("show_eid")]
|
|
public decimal? ShowEid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 组别id
|
|
/// </summary>
|
|
[JsonPropertyName("show_groupids")]
|
|
public string? ShowGroupIds { get; set; }
|
|
|
|
/// <summary>
|
|
/// 销售组id
|
|
/// </summary>
|
|
[JsonIgnore]
|
|
//[JsonPropertyName("txt_groupIds")]
|
|
public decimal? Txt_groupIds { get; set; }
|
|
|
|
/// <summary>
|
|
/// 销售部门id
|
|
/// </summary>
|
|
[JsonIgnore]
|
|
//[JsonPropertyName("txt_deptId")]
|
|
public decimal? Txt_deptId { get; set; }
|
|
}
|
|
}
|