no message

This commit is contained in:
kittapath 2024-10-01 10:59:49 +07:00
parent 1deee019b2
commit 2b1b5f2566
2 changed files with 24 additions and 6 deletions

View file

@ -307,11 +307,10 @@ export class Development extends EntityBase {
isReasonPlanned20: boolean;
@Column({
nullable: true,
comment: "รายละเอียดอื่นๆ 10 แผน",
default: null,
default: false,
})
isReasonPlanned10: string;
isReasonPlanned10: boolean;
@OneToMany(
() => DevelopmentProjectTechniquePlanned,
@ -354,11 +353,10 @@ export class Development extends EntityBase {
isReasonActual20: boolean;
@Column({
nullable: true,
comment: "รายละเอียดอื่นๆ 10 จริง",
default: null,
default: false,
})
isReasonActual10: string;
isReasonActual10: boolean;
@OneToMany(
() => DevelopmentProjectTechniqueActual,