ff-admin-server/src/entity/protocol.ts

14 lines
271 B
TypeScript
Raw Normal View History

2024-10-03 11:31:05 +00:00
import { Column, Entity, PrimaryColumn } from "typeorm";
@Entity()
export class protocol {
@PrimaryColumn({ generated: "increment", type: "int" })
id: number;
@Column({ type: "varchar", length: 255 })
title: string;
@Column({ type: "date" })
date: Date;
}