update
This commit is contained in:
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user