using Api.Framework.Tools;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static CircleFriendsTools.Enums;
namespace Weixin.CircleTools.Entitys
{
///
/// 发送任务
///
public class fl_plugin_circletools_taskinfos : base_model
{
///
/// 任务名称
///
public string task_name { get; set; }
///
/// 机器人robotnames,多个逗号分割
///
public string robotnames { get; set; }
///
/// 发送的工作日
///
public string task_working_day{get;set;}
///
/// 发送的是时间
///
public string task_time { get; set; }
///
/// 发送的内容
///
public string task_sendtext { get; set; }
///
/// 追加的评语
///
public string task_comment { get; set; }
///
/// 是否循环
///
public ChooseType is_circulate { get; set; }
}
}