This commit is contained in:
2025-10-07 15:11:13 +07:00
parent 08c79bb8eb
commit ec730c7e25
2 changed files with 37 additions and 0 deletions

View File

@ -45,6 +45,42 @@ export class TrxTransaction {
})
signatures: String;
@Column({ type: "boolean", nullable: true })
is_maker_approved: boolean;
@Column({ type: "varchar", length: 100, nullable: true })
maker_approved_by: string;
@Column({ type: "varchar", length: 4096, nullable: true })
maker_note: string;
@Column({ nullable: true })
maker_approved_at: Date;
@Column({ type: "boolean", nullable: true })
is_checker_approved: boolean;
@Column({ type: "varchar", length: 100, nullable: true })
checker_approved_by: string;
@Column({ type: "varchar", length: 4096, nullable: true })
checker_note: string;
@Column({ nullable: true })
checker_approved_at: Date;
@Column({ type: "boolean", nullable: true })
is_signer_approved: boolean;
@Column({ type: "varchar", length: 100, nullable: true })
signer_approved_by: string;
@Column({ type: "varchar", length: 4096, nullable: true })
signer_note: string;
@Column({ nullable: true })
signer_approved_at: Date;
@Column({ type: "boolean", nullable: true })
is_tl_approved: boolean;

View File

@ -5,6 +5,7 @@ export enum TrxTransactionStatus {
"close" = "close",
"reject" = "reject",
"approved" = "approved",
"draft" = "draft",
}
export enum TrxTransactionTypeStatus {