17 lines
304 B
C#
17 lines
304 B
C#
|
|
using SqlSugar;
|
|||
|
|
|
|||
|
|
namespace YB.DeviceStand.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 基类实体定义
|
|||
|
|
/// </summary>
|
|||
|
|
public class EntityBase
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 主键
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|||
|
|
public Guid Id { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|