using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.MsgTool.Domain.Dto { public class SearchMsgToolTaskDto : SearchPageBase { /// /// 页面类型 区分 普通计划列表或者循环列表 /// public int? IndexType { get; set; } = 1; /// /// 计划名称 /// public string? PlanName { get; set; } /// /// 任务发起人 /// public string? Creator { get; set; } /// /// 创建时间 /// public DateTime? Stime { get; set; } /// /// 创建时间 /// public DateTime? Etime { get; set; } /// /// 发送类型 /// public string? SendType { get; set; } /// /// 状态 /// public MsgToolTaskExeStatus? Status { get; set; } [JsonPropertyName("txt_companyId")] public decimal? CompanyId { get; set; } [JsonPropertyName("txt_deptId")] public string? DeptId { get; set; } [JsonPropertyName("txt_groupIds")] public string? GroupIds { get; set; } [JsonPropertyName("txt_userId")] public decimal? UserId { get; set; } [JsonPropertyName("txt_businessId")] public string? BusinessId { get; set; } } }