แก้ฟิว
This commit is contained in:
parent
2dce85a207
commit
1deee019b2
3 changed files with 102 additions and 20 deletions
|
|
@ -294,6 +294,25 @@ export class Development extends EntityBase {
|
|||
})
|
||||
reasonPlanned10: string;
|
||||
|
||||
@Column({
|
||||
comment: "รายละเอียดอื่นๆ 70 แผน",
|
||||
default: false,
|
||||
})
|
||||
isReasonPlanned70: boolean;
|
||||
|
||||
@Column({
|
||||
comment: "รายละเอียดอื่นๆ 20 แผน",
|
||||
default: false,
|
||||
})
|
||||
isReasonPlanned20: boolean;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "รายละเอียดอื่นๆ 10 แผน",
|
||||
default: null,
|
||||
})
|
||||
isReasonPlanned10: string;
|
||||
|
||||
@OneToMany(
|
||||
() => DevelopmentProjectTechniquePlanned,
|
||||
(developmentProjectTechniquePlanned: DevelopmentProjectTechniquePlanned) =>
|
||||
|
|
@ -322,6 +341,25 @@ export class Development extends EntityBase {
|
|||
})
|
||||
reasonActual10: string;
|
||||
|
||||
@Column({
|
||||
comment: "รายละเอียดอื่นๆ 70 จริง",
|
||||
default: false,
|
||||
})
|
||||
isReasonActual70: boolean;
|
||||
|
||||
@Column({
|
||||
comment: "รายละเอียดอื่นๆ 20 จริง",
|
||||
default: false,
|
||||
})
|
||||
isReasonActual20: boolean;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "รายละเอียดอื่นๆ 10 จริง",
|
||||
default: null,
|
||||
})
|
||||
isReasonActual10: string;
|
||||
|
||||
@OneToMany(
|
||||
() => DevelopmentProjectTechniqueActual,
|
||||
(developmentProjectTechniqueActual: DevelopmentProjectTechniqueActual) =>
|
||||
|
|
@ -775,6 +813,12 @@ export class UpdateDevelopment3 {
|
|||
@Column()
|
||||
reasonPlanned10?: string;
|
||||
@Column()
|
||||
isReasonPlanned70?: string;
|
||||
@Column()
|
||||
isReasonPlanned20?: string;
|
||||
@Column()
|
||||
isReasonPlanned10?: string;
|
||||
@Column()
|
||||
isBackActual?: boolean | null;
|
||||
@Column()
|
||||
isHoldActual?: boolean | null;
|
||||
|
|
@ -793,6 +837,12 @@ export class UpdateDevelopment3 {
|
|||
@Column()
|
||||
reasonActual10?: string;
|
||||
@Column()
|
||||
isReasonActual70?: boolean;
|
||||
@Column()
|
||||
isReasonActual20?: boolean;
|
||||
@Column()
|
||||
isReasonActual10?: boolean;
|
||||
@Column()
|
||||
strategyChildPlannedId?: string | null;
|
||||
@Column()
|
||||
strategyChildPlannedNode?: number | null;
|
||||
|
|
@ -810,7 +860,6 @@ export class UpdateDevelopment4 {
|
|||
@Column()
|
||||
projectEvaluation: string | null;
|
||||
//end
|
||||
|
||||
}
|
||||
export class UpdateDevelopment5 {
|
||||
//new
|
||||
|
|
@ -866,7 +915,7 @@ export class UpdateDevelopment8_1 {
|
|||
//end
|
||||
}
|
||||
|
||||
export class UpdateDevelopment8{
|
||||
export class UpdateDevelopment8 {
|
||||
@Column()
|
||||
expect: string | null;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue