crm.core/code/Crm.Core.MsgTool.Domain/Dto/CreateTasksByPlanDto.cs

30 lines
683 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.MsgTool.Domain.Dto
{
/// <summary>
/// 根据计划id创建任务
/// </summary>
public class CreateTasksByPlanDto
{
/// <summary>
/// 计划id
/// </summary>
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; }
}
}