namespace Hotline.Ai.Jths.OrderVisits { public class AiVisitServiceRequest { /// /// 批次名称 /// public string BatchName { get; set; } /// /// 批次状态 1:启动 2:暂停 /// public int BatchStatus { get; set; } /// /// 场景ID /// public string SceneUid { get; set; } /// /// 任务数据 /// public List TaskDataList { get; set; } /// /// 优先级 /// public int Priority { get; set; } /// /// 外呼开始时间 /// public string StartDate { get; set; } /// /// 外呼结束时间 /// public string EndDate { get; set; } /// /// 节日禁呼 0:否 1:是 /// public int FestivalBan { get; set; } /// /// 外呼规则类型 1:自定义 2::使用现有规则 /// public int RuleType { get; set; } /// /// 现有外呼规则ID /// public string RuleUid { get; set; } } public class TaskData { public string CalledNumber { get; set; } public List VariableList { get; set; } } public class Variable { public string Code { get; set; } public string Value { get; set; } } }