mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-29 06:00:55 +00:00
Project Initialization
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import { Freight } from '@edr/types';
|
||||
import { IsEnum, IsNumber, IsString, IsUUID, Min } from 'class-validator';
|
||||
|
||||
export class CreateConsignmentDto {
|
||||
@IsUUID()
|
||||
bookingId!: string;
|
||||
|
||||
@IsString()
|
||||
trackingNumber!: string;
|
||||
|
||||
@IsEnum(Freight.CargoType)
|
||||
cargoType!: Freight.CargoType;
|
||||
|
||||
@IsNumber()
|
||||
@Min(0)
|
||||
weightKg!: number;
|
||||
|
||||
@IsString()
|
||||
originStation!: string;
|
||||
|
||||
@IsString()
|
||||
destinationStation!: string;
|
||||
}
|
||||
Reference in New Issue
Block a user