40 lines
969 B
TypeScript
40 lines
969 B
TypeScript
|
import { ApiProperty, IntersectionType, PartialType } from '@nestjs/swagger';
|
||
|
import {
|
||
|
IsArray,
|
||
|
IsDate,
|
||
|
IsDateString,
|
||
|
IsIn,
|
||
|
IsInt,
|
||
|
IsNumber,
|
||
|
IsOptional,
|
||
|
IsString,
|
||
|
Matches,
|
||
|
MinLength
|
||
|
} from 'class-validator';
|
||
|
import { PagerDto } from '~/common/dto/pager.dto';
|
||
|
import { Storage } from '../tools/storage/storage.entity';
|
||
|
import { IsUnique } from '~/shared/database/constraints/unique.constraint';
|
||
|
import { ProductEntity } from './product.entity';
|
||
|
|
||
|
export class ProductDto {
|
||
|
@ApiProperty({ description: '产品名称' })
|
||
|
@IsUnique(ProductEntity, { message: '已存在同名产品' })
|
||
|
@IsString()
|
||
|
name: string;
|
||
|
|
||
|
@ApiProperty({ description: '附件' })
|
||
|
files: Storage[];
|
||
|
}
|
||
|
|
||
|
export class ProductUpdateDto extends PartialType(ProductDto) {
|
||
|
@ApiProperty({ description: '附件' })
|
||
|
@IsOptional()
|
||
|
@IsArray()
|
||
|
fileIds: number[];
|
||
|
}
|
||
|
|
||
|
export class ProductQueryDto extends IntersectionType(
|
||
|
PagerDto<ProductDto>,
|
||
|
PartialType(ProductDto)
|
||
|
) {}
|