Refactor property in RecActionView class
Replaced the `ProfileSequence` property with `Sequence` in the `RecActionView` class. Updated the database column mapping from `PROFILE_SEQUENCE` to `SEQUENCE`. This change aligns with updates to the database schema and improves naming consistency.
This commit is contained in:
parent
b4966585ae
commit
bb43bfa064
@ -34,8 +34,8 @@ public class RecActionView
|
|||||||
[MaxLength(20)]
|
[MaxLength(20)]
|
||||||
public string? ProfileType { get; set; }
|
public string? ProfileType { get; set; }
|
||||||
|
|
||||||
[Column("PROFILE_SEQUENCE")]
|
[Column("SEQUENCE")]
|
||||||
public byte? ProfileSequence { get; set; }
|
public byte? Sequence { get; set; }
|
||||||
|
|
||||||
[Column("ENDPOINT_ID")]
|
[Column("ENDPOINT_ID")]
|
||||||
public long? EndpointId { get; set; }
|
public long? EndpointId { get; set; }
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user