unit to string
This commit is contained in:
parent
9a85609e93
commit
6e07eaacba
8 changed files with 33 additions and 13 deletions
|
|
@ -166,7 +166,7 @@ export class CreateKpiSpecial {
|
|||
@Column()
|
||||
target: string;
|
||||
@Column()
|
||||
unit: string;
|
||||
unit: string | null;
|
||||
@Column()
|
||||
weight: number;
|
||||
@Column()
|
||||
|
|
@ -199,7 +199,7 @@ export class UpdateKpiSpecial {
|
|||
@Column()
|
||||
target: string;
|
||||
@Column()
|
||||
unit: string;
|
||||
unit: string | null;
|
||||
@Column()
|
||||
weight: number;
|
||||
@Column()
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ export class KpiUserPlanned extends EntityBase {
|
|||
comment: "หน่วยนับ",
|
||||
default: null,
|
||||
})
|
||||
unit: number;
|
||||
unit: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
|
|
@ -149,7 +149,7 @@ export class CreateKpiUserPlanned {
|
|||
@Column()
|
||||
target: string;
|
||||
@Column()
|
||||
unit: number;
|
||||
unit: string | null;
|
||||
@Column()
|
||||
weight: number;
|
||||
@Column()
|
||||
|
|
@ -182,7 +182,7 @@ export class UpdateKpiUserPlanned {
|
|||
@Column()
|
||||
target: string;
|
||||
@Column()
|
||||
unit: number;
|
||||
unit: string | null;
|
||||
@Column()
|
||||
weight: number;
|
||||
@Column()
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ export class KpiUserRole extends EntityBase {
|
|||
comment: "หน่วยนับ",
|
||||
default: null,
|
||||
})
|
||||
unit: number;
|
||||
unit: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
|
|
@ -150,7 +150,7 @@ export class CreateKpiUserRole {
|
|||
@Column()
|
||||
target: string;
|
||||
@Column()
|
||||
unit: number;
|
||||
unit: string | null;
|
||||
@Column()
|
||||
weight: number;
|
||||
@Column()
|
||||
|
|
@ -183,7 +183,7 @@ export class UpdateKpiUserRole {
|
|||
@Column()
|
||||
target: string;
|
||||
@Column()
|
||||
unit: number;
|
||||
unit: string | null;
|
||||
@Column()
|
||||
weight: number;
|
||||
@Column()
|
||||
|
|
|
|||
|
|
@ -185,7 +185,7 @@ export class CreateKpiUserSpecial {
|
|||
@Column()
|
||||
target: string;
|
||||
@Column()
|
||||
unit: string;
|
||||
unit: string | null;
|
||||
@Column()
|
||||
weight: number;
|
||||
@Column()
|
||||
|
|
@ -224,7 +224,7 @@ export class UpdateKpiUserSpecial {
|
|||
@Column()
|
||||
target: string;
|
||||
@Column()
|
||||
unit: string;
|
||||
unit: string | null;
|
||||
@Column()
|
||||
weight: number;
|
||||
@Column()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue