ff-operation-server/src/entity/configuration/member.ts

17 lines
360 B
TypeScript
Raw Normal View History

import { Column, Entity, PrimaryColumn } from "typeorm";
@Entity()
export class member {
@PrimaryColumn({ generated: "uuid", type: "varchar" })
id: string;
@Column({ type: "varchar", length: 255 })
firstname: string;
@Column({ type: "varchar", length: 255 })
lastname: string;
@Column({ type: "varchar", length: 255 })
nameaffix: string;
}