import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm';

@Entity({ name: 'clients__clientdatas' })
export class PreviousNcClientEntity {
  @PrimaryGeneratedColumn({ type: 'int', unsigned: true })
  id: number;

  @Column({ type: 'varchar', length: 255, nullable: true })
  company_name: string | null;

  @Column({ type: 'varchar', length: 255, nullable: true })
  contact_primary: string | null;

  @Column({ type: 'varchar', length: 255, nullable: true })
  designationpr: string | null;

  @Column({ type: 'text', nullable: true })
  standard_name: string | null;

  @Column({ type: 'date', nullable: true })
  auditdate: string | null;

  @Column({ type: 'varchar', length: 255, nullable: true })
  email_id: string | null;

  @Column({ type: 'varchar', length: 100, nullable: true })
  telephone: string | null;

  @Column({ type: 'varchar', length: 100, nullable: true })
  mobile_no: string | null;

  @Column({ type: 'text', nullable: true })
  nc_docs: string | null;

  @Column({ type: 'text', nullable: true })
  auditassign: string | null;
}
