using Api.Framework.Tools; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EncourageUser.Entitys { /// /// 发送任务 /// public class fl_qunfa_task : base_model { /// /// 发送文案模板 /// public long messid { get; set; } /// /// 开始时间 /// /// public DateTime startTime { get; set; } /// /// 结束时间 /// public DateTime endTime { get; set; } /// /// 发送间隔 /// public int interval { get; set; } /// /// 总发送量 /// public int totalSentCount { get; set; } /// /// 发送多少数量休息 /// public int restSendCount { get; set; } /// /// 休息间隔 /// public int restInterval { get; set; } /// /// 已经发送数量 /// public int sendnum { get; set; } /// /// 未发送数量 /// public int unsendnum { get; set; } /// /// 总发送数量 /// public int allsendnum { get; set; } /// /// 发送状态 /// public ExecType execType { get; set; } = ExecType.未执行完毕; } }