sgnm-neo4j-excel
Version:
neo4j excel module for nestJs
21 lines (17 loc) • 413 B
text/typescript
import { ApiProperty } from '@nestjs/swagger';
import { IsString } from 'class-validator';
export class ExportExcelDto {
@ApiProperty()
@IsString({ each: true })
buildingKeys: string[];
}
export class ExportExcelDtoForType {
@ApiProperty()
@IsString({ each: true })
typeKeys: string[];
}
export class ExportExcelDtoForSystem {
@ApiProperty()
@IsString({ each: true })
systemKeys: string[];
}