latest work #20

Merged
philipp merged 233 commits from dev into main 2020-12-09 18:49:33 +00:00
Showing only changes of commit a2cf8d1f2c - Show all commits

View File

@ -1,19 +1,35 @@
import { Entity, PrimaryGeneratedColumn, Column } from "typeorm";
import {
IsInt,
IsNotEmpty,
IsOptional,
IsPositive,
} from "class-validator";
/** /**
* Defines the scan interface. * Defines the scan interface.
*/ */
export interface IScan { export abstract class IScan {
/** /**
* Autogenerated unique id (primary key). * Autogenerated unique id (primary key).
*/ */
@PrimaryGeneratedColumn()
@IsOptional()
@IsInt()
id: number; id: number;
/** /**
* The associated runner. * The associated runner.
*/ */
@Column()
@IsNotEmpty()
runner: Runner; runner: Runner;
/** /**
* The scan's distance in meters. * The scan's distance in meters.
*/ */
@Column()
@IsInt()
@IsPositive()
distance: number; distance: number;
} }