This commit is contained in:
fro1991
2025-02-05 03:20:50 +07:00
parent 449e852677
commit d1e5c671c7
2 changed files with 20 additions and 2 deletions

View File

@ -70,6 +70,18 @@ export class CreditApplication {
})
finalize_by: string;
@Column({
nullable: true,
type: 'jsonb'
})
simulation: string[];
@Column({
nullable: true,
type: 'jsonb'
})
scoring: string[];
@Column()
@CreateDateColumn()
created_at: Date;

View File

@ -8,13 +8,19 @@ export class CreditConfigs {
id: string;
@Column({
nullable: false,
nullable: true,
length: 256
})
module: string;
@Column({
nullable: true,
length: 256
})
code: string;
@Column({
nullable: false,
nullable: true,
length: 256
})
param: string;