FeeSet
- Section: Products
Metadata
- Base Table Class: Static
- Default Size: 100
Fields
| Name | Type | Size (bytes) | Description |
|---|---|---|---|
| Id | Integer (signed) | 8 | The unique identifier of this FeeSet. |
| Status | Set of Status | 4 | |
| ShortName | String | 24 | The short text identifier of this FeeSet. |
| UpdateNumber | Integer (unsigned) | 8 | A number that records every change that happens to a record. It is primarily used to avoid write after read problems when an intermediate write has changed the originally read record. |
| OwnerUser | Foreign key to User | 8 | The Id of the User that owns this FeeSet. |
| OwnerGroup | Foreign key to Group | 8 | The Id of the Group that owns this FeeSet. |
| OwnerFirm | Foreign key to Firm | 8 | The Id of the Firm that owns this FeeSet. |
| CreateUser | Foreign key to User | 8 | The Id of the User that created this FeeSet. |
| CreateTimestamp | Integer (unsigned) | 8 | The time at which this FeeSet was created. |
| UpdateUser | Foreign key to User | 8 | The Id of the User that last updated this FeeSet. |
| UpdateTimestamp | Integer (unsigned) | 8 | The time at which this FeeSet was last updated. |
Foreign Keys
The following diagram shows the tables that have a foreign key link to the FeeSet table. All Table nodes can be clicked to take you to that table's definition page.
graph LR; Enterprise-->|FeeSet|FeeSet click Enterprise "/marketgrid/developer/model/tables/Enterprise" Firm-->|FeeSet|FeeSet click Firm "/marketgrid/developer/model/tables/Firm" Account-->|FeeSet|FeeSet Account-->|EffectiveFeeSet|FeeSet click Account "/marketgrid/developer/model/tables/Account" FirmAccountType-->|FeeSet|FeeSet click FirmAccountType "/marketgrid/developer/model/tables/FirmAccountType" Fee-->|FeeSet|FeeSet click Fee "/marketgrid/developer/model/tables/Fee"