This commit is contained in:
fro1991
2025-10-18 02:28:04 +07:00
parent 16bc4cd34d
commit aca07277f7
2 changed files with 4 additions and 7 deletions

View File

@ -1,10 +1,7 @@
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne, JoinTable } from "typeorm"; import { Column, CreateDateColumn, DeleteDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
import { Status } from "../types/status";
import { TrxPartner } from "./trx_partners";
import { TrxCif } from "./trx_cifs";
import { TrxCustomer } from "./trx_customers";
import { Branch } from "./branchs"; import { Branch } from "./branchs";
import { TrxCustomer } from "./trx_customers";
@Entity("trx_customer_accounts", { schema: "trx" }) @Entity("trx_customer_accounts", { schema: "trx" })
export class TrxCustomerAccount { export class TrxCustomerAccount {

View File

@ -63,13 +63,13 @@ export class TrxCustomer {
nullable: false, nullable: false,
length: 256, length: 256,
}) })
cover: string; cover_file: string;
@Column({ @Column({
nullable: false, nullable: false,
length: 256, length: 256,
}) })
desclimer: string; desclimer_file: string;
@Column({ @Column({
nullable: false, nullable: false,