This commit is contained in:
2025-07-25 15:14:32 +07:00
parent eb149f1909
commit 869b0dc76e
3 changed files with 50 additions and 2 deletions

View File

@ -22,11 +22,23 @@ export class RemitPartnerAccounts {
}) })
holder: string; holder: string;
@Column({
nullable: true,
length: 256,
})
remarks: string;
@Column({
nullable: true,
length: 256,
})
label: string;
@Column() @Column()
@CreateDateColumn() @CreateDateColumn()
created_at: Date; created_at: Date;
@Column({ nullable: true, length: 256, }) @Column({ nullable: true, length: 256 })
created_by: string; created_by: string;
@Column({ nullable: true }) @Column({ nullable: true })

View File

@ -23,11 +23,29 @@ export class RemitPartnerDocument {
}) })
file: string; file: string;
@Column({
nullable: true,
length: 256,
})
number: string;
@Column({
nullable: true,
length: 256,
})
remarks: string;
@Column({
nullable: true,
length: 256,
})
label: string;
@Column() @Column()
@CreateDateColumn() @CreateDateColumn()
created_at: Date; created_at: Date;
@Column({ nullable: true, length: 256, }) @Column({ nullable: true, length: 256 })
created_by: string; created_by: string;
@Column({ nullable: true }) @Column({ nullable: true })

View File

@ -37,6 +37,24 @@ export class RemitPartnerFee {
}) })
amount: Number; amount: Number;
@Column({
nullable: true,
length: 256,
})
number: string;
@Column({
nullable: true,
length: 256,
})
remarks: string;
@Column({
nullable: true,
length: 256,
})
label: string;
@Column() @Column()
@CreateDateColumn() @CreateDateColumn()
created_at: Date; created_at: Date;