为主键增加KeyAttribute特性
This commit is contained in:
parent
d3679de856
commit
b079a7d390
|
@ -1,5 +1,6 @@
|
|||
using SqlSugar;
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Falcon.SugarApi.DatabaseDefinitions
|
||||
{
|
||||
|
@ -10,6 +11,7 @@ namespace Falcon.SugarApi.DatabaseDefinitions
|
|||
/// <summary>
|
||||
/// 主键
|
||||
/// </summary>
|
||||
[Key]
|
||||
[SugarColumn(IsPrimaryKey = true,ColumnDescription = "主键")]
|
||||
public Guid? Id { get; set; } = Guid.NewGuid();
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Falcon.SugarApi.DatabaseDefinitions
|
||||
{
|
||||
|
@ -10,6 +11,7 @@ namespace Falcon.SugarApi.DatabaseDefinitions
|
|||
/// <summary>
|
||||
/// 主键 默认GUID 382c74c3-721d-4f34-80e5-57657b6cbc27
|
||||
/// </summary>
|
||||
[Key]
|
||||
[SugarColumn(IsPrimaryKey = true,ColumnDescription = "主键")]
|
||||
public int? Id { get; set; }
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@ namespace Falcon.SugarApi.DatabaseDefinitions
|
|||
/// 主键 默认GUID 382c74c3-721d-4f34-80e5-57657b6cbc27
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true,ColumnDescription = "主键")]
|
||||
[Key]
|
||||
[MaxLength(36)]
|
||||
public string? Id { get; set; }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user