crm.core/code/Crm.Core.Entity/MsgTool/MsgToolTaskCreateDto.cs

120 lines
3.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
/// <summary>
/// 任务名称
/// </summary>
public string PLANNAME { get; set; }
/// <summary>
/// 发送内容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"
///}]
/// </summary>
public string JSONDATA { get; set; }
/// <summary>
/// 大数据人群包ID
/// </summary>
public decimal GROUPID { get; set; }
/// <summary>
/// 大数据人群包名称
/// </summary>
public string? GROUPNAME { get; set; }
/// <summary>
/// 大数据人群包条件描述
/// </summary>
public string? GROUPMEMO { get; set; }
/// <summary>
/// 企微id
/// </summary>
public string CORPIDS { get; set; }
/// <summary>
/// now:立即发布
/// tim:定时发布
/// daily:天循环
/// week:周循环
/// month:月循环
/// </summary>
public string SENDTYPE { get; set; }
/// <summary>
/// 计划执行时间(
///当sendtype=1sendTime=sysdate;
///当snedtype=2sendTime=设定的时间;
///当sendtype=3或4或5sendTime=null;
///)
/// </summary>
public DateTime? PLANEXETIME { get; set; }
/// <summary>
/// 计划执行日期
/// </summary>
public DateTime? PLANEXEDATE { get; set; }
/// <summary>
/// 计划执行周期(例:
/// 当sendtype=1或2或3sendCycle=null;
/// 当snedtype=4周六、日发送sendCycle=[6,7];
/// 当sendtype=5每月的1号15号31号发送sendTime=[1,15,31];
///)
/// </summary>
public string? PLANEXECYCLE { get; set; }
/// <summary>
/// 创建人EID
/// </summary>
public decimal Eid { get; set; }
/// <summary>
/// 计划执行时间,小时分钟秒(例8:01:59)
/// </summary>
public string? PLANEXEHOUR { get; set; }
/// <summary>
/// 截止时间
/// </summary>
public DateTime? DUEDATE { get; set; }
/// <summary>
/// 备注
/// </summary>
public string REMARK { get; set; }
/// <summary>
/// 1 报错草稿 2 确认分发
/// </summary>
public int Type { get; set; }
/// <summary>
/// 人群信息
/// 例:[{"userid":"220720-094514-55","outuserList":
/// [
/// {"name":"uncle陈🐼","userid":"wmir6CCwAA3WymodtvuRCHBqA3RHtcaA"},
/// {"name":"卢卓琰","userid":"woir6CCwAAc__gkDbmAFJFJ0jPsy62Yg"}
/// ],
/// "corpid":"wwd4cd11d60db47118","pagetype":2,"corpname":"懂牛股票通","kfnickname":"刘振"}]
/// </summary>
public string QiWeiPostJson { get; set; }
/// <summary>
/// 任务类型
/// </summary>
public int TaskType { get; set; }
}
}