50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
|
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
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 记录内容每日回复的内容
|
|||
|
/// </summary>
|
|||
|
public class fl_plugin_autoanswer__log : base_model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 记录发生时间
|
|||
|
/// </summary>
|
|||
|
public DateTime datetime { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 机器人昵称
|
|||
|
/// </summary>
|
|||
|
public string robot_name { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 用户账号
|
|||
|
/// </summary>
|
|||
|
public string useraccount { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 用户名称
|
|||
|
/// </summary>
|
|||
|
public string username { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 平台类型
|
|||
|
/// </summary>
|
|||
|
public ChatType chatType { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 接收的内容
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(Length = 10000)]
|
|||
|
public string content { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 记录这个关键词是已回复的,还是未回复的。true为已回复的,false为未回复的
|
|||
|
/// </summary>
|
|||
|
public bool status { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|