add content

This commit is contained in:
liuyi 2025-05-19 20:40:18 +08:00
parent 149623c073
commit afb44f4d0c
3 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,6 @@ import {
Delete, Delete,
Get, Get,
Param, Param,
ParseIntPipe,
ParseUUIDPipe, ParseUUIDPipe,
Patch, Patch,
Post, Post,
@ -24,7 +23,7 @@ export class PostController {
} }
@Get(':id') @Get(':id')
async show(@Param('id', new ParseIntPipe()) id: string) { async show(@Param('id') id: string) {
return this.postService.detail(id); return this.postService.detail(id);
} }

View File

@ -1,5 +1,5 @@
import { Expose } from 'class-transformer'; import { Expose } from 'class-transformer';
import { BaseEntity, Column, Entity, PrimaryColumn } from 'typeorm'; import { BaseEntity, Column, CreateDateColumn, Entity, PrimaryColumn } from 'typeorm';
import { PostBodyType } from '@/modules/content/constants'; import { PostBodyType } from '@/modules/content/constants';
@ -30,9 +30,9 @@ export class PostEntity extends BaseEntity {
@Column({ comment: '自定义文章排序', default: 0 }) @Column({ comment: '自定义文章排序', default: 0 })
customOrder: number; customOrder: number;
@Column({ comment: '创建时间' }) @CreateDateColumn({ comment: '创建时间' })
createdAt?: Date; createdAt?: Date;
@Column({ comment: '更新时间' }) @Column({ comment: '更新时间', nullable: true })
updatedAt?: Date; updatedAt?: Date;
} }

View File

@ -36,8 +36,9 @@ export class PostService {
} }
async update(data: RecordAny) { async update(data: RecordAny) {
data.updatedAt = new Date();
await this.repository.update(data.id, omit(data, ['id'])); await this.repository.update(data.id, omit(data, ['id']));
return this.delete(data.id); return this.detail(data.id);
} }
async delete(id: string) { async delete(id: string) {