代下单功能

This commit is contained in:
2026-07-12 11:40:04 +08:00
parent d949301bc1
commit de01d36cdb
46 changed files with 2657 additions and 253 deletions
@@ -1,7 +1,11 @@
import { IsNotEmpty, IsString } from 'class-validator';
import { IsNotEmpty, IsOptional, IsString } from 'class-validator';
export class PromoTouchDto {
@IsOptional()
@IsString()
@IsNotEmpty()
promoCode: string;
promoCode?: string;
@IsOptional()
@IsString()
qrcodeId?: string;
}