Rename Guid property to Id in EndpointParam class
The `Guid` property in the `EndpointParam` class was renamed to `Id` to improve code readability and align with naming conventions. The `[Key]` and `[Column("GUID")]` attributes remain unchanged, ensuring the database schema mapping and primary key designation are preserved.
This commit is contained in:
parent
8c47082c7f
commit
773b939a5c
@ -13,7 +13,7 @@ public class EndpointParam
|
||||
{
|
||||
[Key]
|
||||
[Column("GUID")]
|
||||
public long? Guid { get; set; }
|
||||
public long? Id { get; set; }
|
||||
|
||||
[Column("ACTIVE")]
|
||||
public bool? Active { get; set; }
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user