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