hrms-api-org/src/entities/Relationship.ts

23 lines
503 B
TypeScript
Raw Normal View History

2024-03-20 09:09:42 +07:00
import { Entity, Column, OneToMany } from "typeorm";
2024-02-02 10:47:19 +07:00
import { EntityBase } from "./base/Base";
import { Profile } from "./Profile";
2024-03-21 11:28:02 +07:00
import { ProfileEmployee } from "./ProfileEmployee";
2024-03-20 09:09:42 +07:00
2024-02-02 10:47:19 +07:00
@Entity("relationship")
export class Relationship extends EntityBase {
@Column({
nullable: true,
comment: "สถานภาพ",
length: 255,
default: null,
})
name: string;
}
export class CreateRelationship {
name: string;
2024-02-02 10:47:19 +07:00
}
export type UpdateRelationship = Partial<CreateRelationship>;