Walle.Api/AI.Common/Dtos/QuestionLogDto.cs

39 lines
816 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AI.Common.Dtos
{
public class QuestionLogDto
{
/// <summary>
/// 备 注:内容
/// 默认值:
///</summary>
public string Content { get; set; }
/// <summary>
/// 备 注:类型 1:文本 2:图片 3:文件
/// 默认值:
///</summary>
public int Type { get; set; }
/// <summary>
/// 备 注:发生时间戳
/// 默认值:
///</summary>
public long Timestamp { get; set; }
/// <summary>
/// 备 注:角色 1:用户 2:GPT
/// 默认值:
///</summary>
public int Chater { get; set; }
}
}