33 lines
784 B
C#
33 lines
784 B
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace Application.Domain.Entity
|
|
{
|
|
[Tenant("Kg.SeaTime.Game")]
|
|
public class unit_user_enemy
|
|
{
|
|
/// <summary>
|
|
/// euId
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, Length = 100)]
|
|
public string euId { get; set; }
|
|
|
|
/// <summary>
|
|
/// userId
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? userId { get; set; }
|
|
|
|
/// <summary>
|
|
/// eId
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? eId { get; set; }
|
|
|
|
/// <summary>
|
|
/// addTime
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public DateTime? addTime { get; set; }
|
|
}
|
|
} |