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

21 lines
412 B
TypeScript
Raw Normal View History

2024-10-18 11:45:16 +07:00
import { Entity, Column } from "typeorm";
2024-02-02 10:47:19 +07:00
import { EntityBase } from "./base/Base";
2024-03-20 09:09:42 +07:00
2024-02-02 10:47:19 +07:00
@Entity("bloodGroup")
export class BloodGroup extends EntityBase {
@Column({
nullable: true,
comment: "กรุ๊ปเลือด",
length: 255,
default: null,
})
name: string;
}
export class CreateBloodGroup {
@Column()
name: string;
2024-02-02 10:47:19 +07:00
}
export type UpdateBloodGroup = Partial<CreateBloodGroup>;