oa_based/src/modules/company/company.dto.ts

54 lines
1.3 KiB
TypeScript
Raw Normal View History

2024-03-04 16:34:54 +08:00
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 { CompanyEntity } from './company.entity';
2024-04-16 14:06:02 +08:00
import { DomainType, SkDomain } from '~/common/decorators/domain.decorator';
2024-03-04 16:34:54 +08:00
2024-04-16 14:06:02 +08:00
export class CompanyDto extends DomainType {
2024-03-04 16:34:54 +08:00
@ApiProperty({ description: '公司名称' })
@IsUnique(CompanyEntity, { message: '已存在同名公司' })
@IsString()
name: string;
@ApiProperty({ description: '附件' })
files: Storage[];
}
export class CompanyUpdateDto extends PartialType(CompanyDto) {
@ApiProperty({ description: '附件' })
@IsOptional()
@IsArray()
fileIds: number[];
}
2024-03-05 13:57:03 +08:00
export class ComapnyCreateDto extends PartialType(CompanyDto) {
@ApiProperty({ description: '附件' })
@IsOptional()
@IsArray()
fileIds: number[];
}
2024-03-04 16:34:54 +08:00
export class CompanyQueryDto extends IntersectionType(
PagerDto<CompanyDto>,
2024-04-16 14:06:02 +08:00
PartialType(CompanyDto),
DomainType
2024-03-05 13:57:03 +08:00
) {
@ApiProperty({ description: '公司名称' })
@IsOptional()
@IsString()
name: string;
}