commit
This commit is contained in:
27
src/domain/entity/tables/estvendaprecliente.entity.ts
Normal file
27
src/domain/entity/tables/estvendaprecliente.entity.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import { Column, Entity, PrimaryColumn } from "typeorm";
|
||||
|
||||
@Entity('ESTVENDAPRECLIENTE')
|
||||
export class Estvendaprecliente {
|
||||
|
||||
@PrimaryColumn({ name: 'ID'})
|
||||
id: number;
|
||||
|
||||
@Column({ name: 'IDCART'})
|
||||
idcart: string;
|
||||
|
||||
@Column({ name: 'CPF'})
|
||||
cpf: string;
|
||||
|
||||
@Column({ name: 'NOME'})
|
||||
nome: string;
|
||||
|
||||
@Column({ name: 'TELEFONE'})
|
||||
telefone: string;
|
||||
|
||||
@Column({ name: 'CODUSUR'})
|
||||
codusur: number;
|
||||
|
||||
@Column({ name: 'DTCADASTRO'})
|
||||
dtcadastro: Date;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user