using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.MsgTool.Domain.Dto { /// /// 任务执行信息 /// public class MsgToolExecuteDto { /// /// id /// public decimal PKID { get; set; } /// /// 企微名称 /// public string? WeworkName { get; set; } /// /// 电话 /// public string? Phone { get; set; } /// /// 昵称 /// public string? Nickname { get; set; } /// /// 员工信息 /// public string? Euser { get; set; } /// /// 邮箱 /// public string? Email { get; set; } /// /// 推广状态 /// public AssignStatus? AssignStatus { get; set; } /// /// 群发数量 /// public int Count { get; set; } public int EnableCount { get; set; } public int UnExecCount { get; set; } public int SuccessCount { get; set; } public int FailCount { get; set; } public int NotFoundCount { get; set; } /// /// 任务状态 /// public MsgToolTaskCmdStatus Status { get; set; } /// /// 企微用户id /// [JsonIgnore] public string? Userid { get; set; } /// /// 企微id /// [JsonIgnore] public string? Corpid { get; set; } public MsgToolTaskStatus TaskStatus { get; set; } public bool CanRun { get; set; } public string? JsonData { get; set; } [JsonIgnore] public decimal? Eid { get; set; } } }