feat(Entity): umbenennen in EntityBase
This commit is contained in:
parent
6f19c5d12a
commit
260ed13661
@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace DigitalData.DEX.Domain.Entities;
|
||||
|
||||
public abstract class Entity
|
||||
public abstract class EntityBase
|
||||
{
|
||||
[Key]
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
@ -4,7 +4,7 @@ using System.ComponentModel.DataAnnotations.Schema;
|
||||
namespace DigitalData.DEX.Domain.Entities;
|
||||
|
||||
[Table("TBDEX_OUTPUT", Schema = "dbo")]
|
||||
public class Output : Entity
|
||||
public class Output : EntityBase
|
||||
{
|
||||
[Required]
|
||||
[Column("PROFILE_ID", TypeName = "smallint")]
|
||||
|
||||
@ -4,7 +4,7 @@ using System.ComponentModel.DataAnnotations.Schema;
|
||||
namespace DigitalData.DEX.Domain.Entities;
|
||||
|
||||
[Table("TBDEX_OUTPUT_REFERENCES", Schema = "dbo")]
|
||||
public class OutputReferences : Entity
|
||||
public class OutputReferences : EntityBase
|
||||
{
|
||||
[Column("OUTPUT_ID", TypeName = "bigint")]
|
||||
public long OutputId { get; set; }
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user