| 1 | import { ApiProperty } from '@nestjs/swagger'; |
| 2 | import { Expose } from 'class-transformer'; |
| 3 | import { IsString } from 'class-validator'; |
| 4 | |
| 5 | export class RejectedTaskDto { |
| 6 | @ApiProperty({ description: '验证备注', required: false }) |
| 7 | @IsString() |
| 8 | @Expose() |
| 9 | verificationNote: string; |
| 10 | } |
| 11 |