hrms-api-org/src/entities/Relationship.ts
2024-10-18 11:52:35 +07:00

19 lines
401 B
TypeScript

import { Entity, Column } from "typeorm";
import { EntityBase } from "./base/Base";
@Entity("relationship")
export class Relationship extends EntityBase {
@Column({
nullable: true,
comment: "สถานภาพ",
length: 255,
default: null,
})
name: string;
}
export class CreateRelationship {
name: string;
}
export type UpdateRelationship = Partial<CreateRelationship>;