using SqlSugar;
using Volo.Abp.Domain.Entities;
using Yi.Framework.Core.Data;
namespace Yi.Framework.AiHub.Domain.Entities.Model;
///
/// ai模型定义
///
[SugarTable("Ai_Model")]
public class AiModelEntity : Entity, IOrderNum,ISoftDelete
{
///
/// 处理名
///
public string HandlerName { get; set; }
///
/// 模型id
///
public string ModelId { get; set; }
///
/// 模型名称
///
public string Name { get; set; }
///
/// 模型描述
///
public string? Description { get; set; }
///
/// 排序
///
public int OrderNum { get; set; }
///
/// 软删除
///
public bool IsDeleted { get; set; }
///
/// ai应用id
///
public Guid AiAppId { get; set; }
}