using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_drug
{
///
/// userId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string userId { get; set; }
///
/// drug
///
[SugarColumn(IsNullable = true,IsJson = true)]
public List drug { get; set; }
}
}