33 lines
687 B
C#
33 lines
687 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CloudGaming.Code.DataBaseModel
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class DefaultGameEntity : Entity<int>, IEntity
|
|
{
|
|
//
|
|
// 摘要:
|
|
// 主键
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public override int Id { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class DefaultGameAppEntity : DefaultGameEntity
|
|
{
|
|
/// <summary>
|
|
/// 租户
|
|
/// </summary>
|
|
public virtual Guid TenantId { get; set; }
|
|
}
|
|
}
|