HuanMengAdmin/admin-server/MiaoYu.Repository.ChatAI.Admin/Entities/Apps/T_Character.cs
2024-07-29 01:55:29 +08:00

95 lines
2.0 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.

namespace MiaoYu.Repository.ChatAI.Admin.Entities.Apps;
/// <summary>
/// 人物表
/// </summary>
[EntityDescription(FieldIgnored = true)]
public class T_Character : DefaultEntityV4
{
/// <summary>
/// 人物名字 => 备注: 人物名字
/// </summary>
public string? Name { get; set; }
/// <summary>
/// 人物简介 => 备注: 人物简介
/// </summary>
public string? Biography { get; set; }
/// <summary>
/// 开场白,剧情 => 备注: 开场白,剧情
/// </summary>
public string? Prologue { get; set; }
/// <summary>
/// 模型Id => 备注: 模型Id
/// </summary>
public Int32 ModelConfigId { get; set; }
/// <summary>
/// 公开/私密 0公开 1私密 => 备注: 公开/私密 0公开 1私密
/// </summary>
public Boolean Visibility { get; set; }
/// <summary>
/// 创建时间 => 备注: 创建时间
/// </summary>
public DateTime? CreateTime { get; set; }
/// <summary>
/// 更新时间 => 备注: 更新时间
/// </summary>
public DateTime? UpdateTime { get; set; }
/// <summary>
/// 性别0男1女2其他 => 备注: 性别0男1女2其他
/// </summary>
public Int32 Gender { get; set; }
/// <summary>
/// 人物初始设定 => 备注: 人物初始设定
/// </summary>
public string? System { get; set; }
/// <summary>
/// 背景图片 => 备注: 背景图片
/// </summary>
public Int32? BgImg { get; set; }
/// <summary>
/// 角色头像是id => 备注: 角色头像是id
/// </summary>
public Int32? IconImg { get; set; }
/// <summary>
/// 对话名字 => 备注: 对话名字
/// </summary>
public string? UserName { get; set; }
/// <summary>
/// 对话性别 => 备注: 对话性别
/// </summary>
public string? UserSex { get; set; }
/// <summary>
/// system最大的token数 => 备注: system最大的token数
/// </summary>
public Int32? Token { get; set; }
}