feat: 创建博客支持slug字段了

This commit is contained in:
2025-12-27 13:05:07 +08:00
parent a2e8ddebca
commit 58b7f592fe
4 changed files with 71 additions and 3 deletions

View File

@@ -5,6 +5,9 @@ export class CreateBlogDto {
@IsString()
title: string;
@IsString()
slug: string;// 允许空串但如果为空则需要手动设置为null防止数据库唯一键冲突
@IsString()
description: string;