251129:1700 update to 1.4.5
This commit is contained in:
13
backend/src/modules/rfa/dto/submit-rfa.dto.ts
Normal file
13
backend/src/modules/rfa/dto/submit-rfa.dto.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
// File: src/modules/rfa/dto/submit-rfa.dto.ts
|
||||
import { ApiProperty } from '@nestjs/swagger';
|
||||
import { IsInt, IsNotEmpty } from 'class-validator';
|
||||
|
||||
export class SubmitRfaDto {
|
||||
@ApiProperty({
|
||||
description: 'ID ของ Routing Template ที่จะใช้เดินเรื่อง',
|
||||
example: 1,
|
||||
})
|
||||
@IsInt()
|
||||
@IsNotEmpty()
|
||||
templateId!: number;
|
||||
}
|
||||
Reference in New Issue
Block a user