Interface IBaseEntity
Represents a base entity.
Inherited Members
Namespace: BiExcellence.OpenBi.Api.Commands.Entities
Assembly: BiExcellence.OpenBi.Api.Entity.dll
Syntax
[TableAttribute("SHOP_BASE_PRODUCT")]
public interface IBaseEntity : ICustomAttributes
Properties
Description
Gets or sets the description.
Declaration
[ApiField("DESCRIPTION")]
string? Description { get; set; }
Property Value
Type | Description |
---|---|
string |
EntityTableName
Gets or sets the table name.
Declaration
[ApiField("TABLE_NAME")]
string? EntityTableName { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
The table name cannot be changed after a base entity is created.
Id
Gets the id.
Declaration
[ApiField("ID")]
string Id { get; }
Property Value
Type | Description |
---|---|
string |
Name
Gets or sets the name.
Declaration
[ApiField("NAME")]
string? Name { get; set; }
Property Value
Type | Description |
---|---|
string |