using Api.Framework.SDK; using Api.Framework.Tools; using Microsoft.JScript; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AutoAnswer.Entitys { /// /// 记录内容每日回复的内容 /// public class fl_plugin_autoanswer__log : base_model { /// /// 记录发生时间 /// public DateTime datetime { get; set; } /// /// 机器人昵称 /// public string robot_name { get; set; } /// /// 用户账号 /// public string useraccount { get; set; } /// /// 用户名称 /// public string username { get; set; } /// /// 平台类型 /// public ChatType chatType { get; set; } /// /// 接收的内容 /// [SugarColumn(Length = 10000)] public string content { get; set; } /// /// 记录这个关键词是已回复的,还是未回复的。true为已回复的,false为未回复的 /// public bool status { get; set; } } }