using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.MsgTool.Domain.Dto { /// /// 根据计划id创建任务 /// public class CreateTasksByPlanDto { /// /// 计划id /// public decimal PlanId { get; set; } } public class CancelTaskCmdByTaskDto { public decimal TaskId { get; set; } } public class SetCmdDetailEnableDto { public decimal CmdId { get; set; } public string? cmdDetailIds { get; set; } public string? allpostData { get; set; } } }