brilink update

This commit is contained in:
fro1991
2025-05-14 23:12:03 +07:00
parent 6d5de8e52a
commit 4773c90635

View File

@ -45,6 +45,18 @@ export class BrilinkTransaction {
@Column({ nullable: false }) @Column({ nullable: false })
activity_at: Date; activity_at: Date;
@Column({
length: 128,
nullable: true,
})
target: string;
@Column({
type: 'jsonb',
nullable: true,
})
target_data: Record<string, any>;
@Column({ @Column({
type: 'float8', type: 'float8',
nullable: false, nullable: false,
@ -72,6 +84,18 @@ export class BrilinkTransaction {
}) })
status: BrilinkTransactionActivity; status: BrilinkTransactionActivity;
@Column({
length: 128,
nullable: true,
})
reference: string;
@Column({
length: 1024,
nullable: true,
})
remarks: string;
@Column({ @Column({
nullable: false, nullable: false,
default: false default: false