41 lines
834 B
C#
41 lines
834 B
C#
using FreeSql.DatabaseModel;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using FreeSql.DataAnnotations;
|
|
using MiaoYu.Core.EntityFramework.Models;
|
|
|
|
namespace MiaoYu.Repository.ChatAI.Admin.Entities
|
|
{
|
|
|
|
/// <summary>
|
|
/// 图片表
|
|
/// </summary>
|
|
[EntityDescription(FieldIgnored = true)]
|
|
public partial class T_Image_Config : DefaultEntityV4
|
|
{
|
|
|
|
/// <summary>
|
|
/// 图片Id
|
|
/// </summary>
|
|
public int ImageId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片url
|
|
/// </summary>
|
|
|
|
public string Url { get; set; }
|
|
|
|
}
|
|
|
|
}
|