feat(api): add mini program catalog endpoints and product details

This commit is contained in:
yeuimu
2026-08-21 02:11:20 +08:00
parent fcbf8bb494
commit 7d09077f1d
18 changed files with 1347 additions and 179 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ import { ApiProperty } from '@nestjs/swagger';
export class PublicGoodDto {
@ApiProperty()
id!: string;
goodId!: string;
@ApiProperty()
goodName!: string;
@@ -33,4 +33,4 @@ export class PublicGoodDto {
@ApiProperty()
createdAt!: string;
}
}