You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
408 B
C#

using SqlSugar;
namespace OpenAuth.Repository.Domain;
[SugarTable("lasa_aiachievement_detail")]
public class LasaAiAchievementDetail
{
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
public string Id { get; set; }
[SugarColumn(ColumnName = "Image")] public string Image { get; set; }
[SugarColumn(ColumnName = "AiAchievementId")]
public string AiAchievementId { get; set; }
}