old_flsystem/应用/AutoAnswer/Entitys/fl_plugin_autoanswer__log.cs

50 lines
1.3 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 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; }
}
}