using Api.Framework.SDK;
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_user : base_model
{
///
/// 任务id
///
public long taskid { get; set; }
///
/// 用户id
///
public long userid { get; set; }
///
/// 用户账号
///
public string username { get; set; }
///
/// 机器人类型
///
public ChatType chattype { get; set; }
///
/// 机器人账号
///
public string robotname { get; set; }
///
/// 发送状态
///
public bool issend { get; set; } = false;
///
/// 发送时间戳
///
public int sendtime { get; set; }
}
}