84 lines
2.3 KiB
C#
84 lines
2.3 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 NotificationStatisticsDto
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public string? Id { get; set; }
|
|
|
|
[JsonPropertyName("name")]
|
|
public string? Name { get; set; }
|
|
|
|
[JsonPropertyName("resid")]
|
|
public string? Resid { get; set; }
|
|
|
|
[JsonPropertyName("umid")]
|
|
public string? Umid { get; set; }
|
|
|
|
[JsonPropertyName("end_time")]
|
|
public string? EndTime { get; set; }
|
|
|
|
[JsonPropertyName("deptid")]
|
|
public decimal? DeptId { get; set; }
|
|
|
|
[JsonPropertyName("deptname")]
|
|
public string? DeptName { get; set; }
|
|
|
|
[JsonPropertyName("eid")]
|
|
public decimal? Eid { get; set; }
|
|
|
|
[JsonPropertyName("ename")]
|
|
public string? Ename { get; set; }
|
|
|
|
[JsonPropertyName("repeat_type")]
|
|
public int? RepeatType { get; set; }
|
|
|
|
[JsonPropertyName("repeat_type_str")]
|
|
public string? RepeatTypeStr { get; set; }
|
|
|
|
[JsonPropertyName("cross_dept")]
|
|
public int? CrossDept { get; set; }
|
|
|
|
[JsonPropertyName("repeat_deptid")]
|
|
public decimal? RepeatDeptId { get; set; }
|
|
|
|
[JsonPropertyName("repeat_deptname")]
|
|
public string? RepeatDeptName { get; set; }
|
|
|
|
[JsonPropertyName("repeat_eid")]
|
|
public decimal? RepeatEid { get; set; }
|
|
|
|
[JsonPropertyName("repeat_userid")]
|
|
public string? RepeatUserId { get; set; }
|
|
|
|
[JsonPropertyName("repeat_ename")]
|
|
public string? RepeatEname { get; set; }
|
|
|
|
[JsonPropertyName("repeat_start_time")]
|
|
public string? RepeatStartTime { get; set; }
|
|
|
|
[JsonPropertyName("repeat_end_time")]
|
|
public string? RepeatEndTime { get; set; }
|
|
|
|
[JsonPropertyName("repeat_days")]
|
|
public int? RepeatDays { get; set; }
|
|
|
|
[JsonPropertyName("create_time")]
|
|
public string? CTIME { get; set; }
|
|
|
|
[JsonPropertyName("update_time")]
|
|
public string? UTIME { get; set; }
|
|
|
|
[JsonPropertyName("groupid")]
|
|
public int? GroupId { get; set; }
|
|
|
|
[JsonPropertyName("group_name")]
|
|
public string? GroupName { get; set; }
|
|
}
|
|
}
|