no message

This commit is contained in:
Kittapath 2024-04-19 17:45:56 +07:00
parent e29c7c127f
commit ee77d0c51c
5 changed files with 80 additions and 28 deletions

View file

@ -5,12 +5,6 @@ import { KpiPeriod } from "./kpiPeriod";
@Entity("kpiPlan")
export class KpiPlan extends EntityBase {
@Column({
nullable: true,
comment: "ปีงบประมาณ",
})
year: number;
@Column({
nullable: true,
comment: "รหัสตัวชี้วัด",
@ -295,8 +289,6 @@ export class KpiPlan extends EntityBase {
kpiPeriod: KpiPeriod;
}
export class createKpiPlan {
@Column()
year: number | null;
@Column()
including: string | null;
@Column()
@ -336,8 +328,6 @@ export class createKpiPlan {
}
export class updateKpiPlan {
@Column()
year: number | null;
@Column()
including: string | null;
@Column()

View file

@ -12,12 +12,6 @@ export class KpiRole extends EntityBase {
})
position: string;
@Column({
nullable: true,
comment: "ปีงบประมาณ",
})
year: number;
@Column({
nullable: true,
comment: "รหัสตัวชี้วัด",
@ -230,8 +224,6 @@ export class createKpiRole {
@Column()
position: string | null;
@Column()
year: number | null;
@Column()
including: string | null;
@Column()
includingName: string | null;
@ -269,8 +261,6 @@ export class updateKpiRole {
@Column()
position: string | null;
@Column()
year: number | null;
@Column()
including: string | null;
@Column()
includingName: string | null;