mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-29 01:20:55 +00:00
62 lines
1.4 KiB
TypeScript
62 lines
1.4 KiB
TypeScript
import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
|
|
import { Type } from 'class-transformer';
|
|
import {
|
|
ArrayMinSize,
|
|
IsArray,
|
|
IsDateString,
|
|
IsInt,
|
|
IsNumber,
|
|
IsOptional,
|
|
IsUUID,
|
|
Min,
|
|
} from 'class-validator';
|
|
|
|
export class PreviewTrainScheduleDto {
|
|
@ApiProperty({ type: [String] })
|
|
@IsArray()
|
|
@ArrayMinSize(1)
|
|
@IsUUID('4', { each: true })
|
|
bookingIds!: string[];
|
|
|
|
@ApiProperty({ example: '2026-06-20T08:00:00.000Z' })
|
|
@IsDateString()
|
|
scheduleDate!: string;
|
|
|
|
@ApiProperty({ format: 'uuid' })
|
|
@IsUUID()
|
|
originStationId!: string;
|
|
|
|
@ApiProperty({ format: 'uuid' })
|
|
@IsUUID()
|
|
destinationStationId!: string;
|
|
|
|
@ApiPropertyOptional({
|
|
format: 'uuid',
|
|
description: 'Allow bookings already assigned to this schedule (re-assign / reschedule)',
|
|
})
|
|
@IsOptional()
|
|
@IsUUID()
|
|
targetScheduleId?: string;
|
|
|
|
@ApiPropertyOptional({ description: 'Maximum total booking weight allowed on this train' })
|
|
@IsOptional()
|
|
@Type(() => Number)
|
|
@IsNumber()
|
|
@Min(1)
|
|
maxTrainWeightTons?: number;
|
|
|
|
@ApiPropertyOptional({ description: 'Maximum total wagon length allowed on this train' })
|
|
@IsOptional()
|
|
@Type(() => Number)
|
|
@IsNumber()
|
|
@Min(1)
|
|
maxTrainLengthMeters?: number;
|
|
|
|
@ApiPropertyOptional({ description: 'Maximum wagons allowed on this train' })
|
|
@IsOptional()
|
|
@Type(() => Number)
|
|
@IsInt()
|
|
@Min(1)
|
|
maxWagonsPerTrain?: number;
|
|
}
|