增加修炼功能

This commit is contained in:
LN
2026-07-04 14:08:35 +08:00
parent 404af92f96
commit e1bff431e4
7 changed files with 247 additions and 2 deletions

View File

@@ -0,0 +1,45 @@
using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_practise
{
/// <summary>
/// practiseId
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string practiseId { get; set; }
/// <summary>
/// userId
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string userId { get; set; }
/// <summary>
/// name
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string name { get; set; }
/// <summary>
/// exp
/// </summary>
[SugarColumn(Length = 18, IsNullable = true)]
public decimal? exp { get; set; }
/// <summary>
/// addTime
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
/// <summary>
/// endTime
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? endTime { get; set; }
}
}