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; finalize_by: string;
@Column({
nullable: true,
type: 'jsonb'
})
simulation: string[];
@Column({
nullable: true,
type: 'jsonb'
})
scoring: string[];
@Column() @Column()
@CreateDateColumn() @CreateDateColumn()
created_at: Date; created_at: Date;

View File

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