| 1 | /* |
| 2 | * @Author: nevin |
| 3 | * @Date: 2024-09-02 14:45:57 |
| 4 | * @LastEditTime: 2025-02-22 12:37:22 |
| 5 | * @LastEditors: nevin |
| 6 | * @Description: 时间模板 |
| 7 | */ |
| 8 | import { Prop } from '@nestjs/mongoose'; |
| 9 | |
| 10 | export class TimeTemp { |
| 11 | @Prop({ default: Date.now }) |
| 12 | createTime: Date; |
| 13 | |
| 14 | @Prop({ default: Date.now, set: () => new Date() }) |
| 15 | updateTime: Date; |
| 16 | } |
| 17 |