แก้ไข KpiGroup

This commit is contained in:
AnandaTon 2024-04-18 10:24:18 +07:00
parent eaff0dac2c
commit c86a88d32b
5 changed files with 103 additions and 59 deletions

21
src/entities/kpiGroup.ts Normal file
View file

@ -0,0 +1,21 @@
import { Entity, Column } from "typeorm";
import { EntityBase } from "./base/Base";
@Entity("kpiGroup")
export class KpiGroup extends EntityBase {
@Column({
nullable: true,
comment: "ชื่อกลุ่มงาน",
default: null,
})
nameGroupKPI: string;
}
export class creatKpiGroup {
@Column()
nameGroupKPI: string;
}
export class updateKpiGroup {
@Column()
nameGroupKPI: string;
}