import { ApiProperty } from '@nestjs/swagger'; export class AddCommentByKeyDto { @ApiProperty({ description: '文章关键key' }) articleKey: string; @ApiProperty({ description: '评论key' }) key: string; @ApiProperty({ description: '评论内容' }) content: string; @ApiProperty({ description: '发布时间 格式 YYY-MM-DD HH:mm:ss' }) publishTime: string; }