using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.MsgTool
{
public class MsgToolTaskCreateDto
{
public decimal? PKID { get; set; }
///
/// 任务名称
///
public string PLANNAME { get; set; }
///
/// 发送内容(json格式如:[{
///"sort": 1,
///"msgtype": "txt",
///"content": "[#name]你好"
///}, {
///"sort": 2,
///"msgtype": "txt",
///"content": "www.baidu.com"
///}, {
/// "sort": 3,
///"msgtype": "txt",
///"content": "以下是我们服务内容[拳头]"
///}, {
/// "sort": 4,
///"msgtype": "img",
///"content": "http://imgxx/1243534.png"
///}, {
/// "sort": 5,
///"msgtype": "file",
///"content": "http://imgxx/as23423.docx"
///}])
///
public string JSONDATA { get; set; }
///
/// 大数据人群包ID
///
public decimal GROUPID { get; set; }
///
/// 大数据人群包名称
///
public string? GROUPNAME { get; set; }
///
/// 大数据人群包条件描述
///
public string? GROUPMEMO { get; set; }
///
/// 企微id
///
public string CORPIDS { get; set; }
///
/// now:立即发布
/// tim:定时发布
/// daily:天循环
/// week:周循环
/// month:月循环
///
public string SENDTYPE { get; set; }
///
/// 计划执行时间(
///当sendtype=1,sendTime=sysdate;
///当snedtype=2,sendTime=设定的时间;
///当sendtype=3或4或5,sendTime=null;
///)
///
public DateTime? PLANEXETIME { get; set; }
///
/// 计划执行日期
///
public DateTime? PLANEXEDATE { get; set; }
///
/// 计划执行周期(例:
/// 当sendtype=1或2或3,sendCycle=null;
/// 当snedtype=4周六、日发送,sendCycle=[6,7];
/// 当sendtype=5每月的1号15号31号发送,sendTime=[1,15,31];
///)
///
public string? PLANEXECYCLE { get; set; }
///
/// 创建人EID
///
public decimal Eid { get; set; }
///
/// 计划执行时间,小时分钟秒(例:8:01:59)
///
public string? PLANEXEHOUR { get; set; }
///
/// 截止时间
///
public DateTime? DUEDATE { get; set; }
///
/// 备注
///
public string REMARK { get; set; }
///
/// 1 报错草稿 2 确认分发
///
public int Type { get; set; }
///
/// 人群信息
/// 例:[{"userid":"220720-094514-55","outuserList":
/// [
/// {"name":"uncle陈🐼","userid":"wmir6CCwAA3WymodtvuRCHBqA3RHtcaA"},
/// {"name":"卢卓琰","userid":"woir6CCwAAc__gkDbmAFJFJ0jPsy62Yg"}
/// ],
/// "corpid":"wwd4cd11d60db47118","pagetype":2,"corpname":"懂牛股票通","kfnickname":"刘振"}]
///
public string QiWeiPostJson { get; set; }
///
/// 任务类型
///
public int TaskType { get; set; }
}
}