Skip to content
This repository has been archived by the owner on Dec 23, 2021. It is now read-only.

Numeric Column

Theo Sun edited this page Oct 12, 2020 · 1 revision

Numeric Column

Please use BigNumber as numeric type to make number calculate safe.

@ODataModel()
class ValidationFloat {
  @UUIDKeyProperty() id: string;
  @Property({ type: 'float' }) value: BigNumber;
}