import { IsNumber, IsNotEmpty } from 'class-validator'; export class TransferCashOutDto { @IsNumber() @IsNotEmpty() open_id: number; }