using System;
using System.Collections.Generic;
using System.Text;
namespace Operater.DTO.Market
{
///
/// 查询指定号码任务列表request
///
public class GetCustomernumbersendTaskListRequest:PageBiz
{
///
/// 主题
///
public string theme { get; set; }
///
/// 开始时间
///
public DateTime? sttime { get; set; }
///
/// 结束时间
///
public DateTime? etime { get; set; }
}
///
/// 删除指定号码任务
///
public class DelCustomernumbersendTaskRequest {
public string id { get; set; }
}
///
/// 创建指定号码request
///
public class AddCustomernumbersendTaskRequest
{
///
/// 指定手机号码
///
public string mobile { get; set; }
///
/// 指定发送数量
///
public int sendcount { get; set; }
///
/// 发送内容
///
public string smscontent { get; set; }
///
/// 任务类型:1: 单次任务,2:循环任务
///
public int sendtype { get; set; }
///
/// 签名
///
public string smsname { get; set; }
///
/// 1:立即执行 2:定时执行
///
public int wantsendtype { get; set; }
///
/// 定时执行时间
///
public DateTime wantsendtime { get; set; }
///
/// 营销主题
///
public string theme { get; set; }
///
/// 屏蔽天数
///
public int pdday { get; set; }
///
/// 是否测试:0否 1是
///
public string istest { get; set; }
///
/// 查询条件。示例:{"label":["111","222","3333"]}
///
public string querytext { get; set; }
///
/// 循环次数
///
public int cyclestime { get; set; }
///
/// 每次循环数量
///
public int cyclescount { get; set; }
///
/// 每隔多少分钟循环
///
public int cycleminute { get; set; }
}
}