commit
This commit is contained in:
10
src/domain/entity/tables/estcategoriacliente.entity.ts
Normal file
10
src/domain/entity/tables/estcategoriacliente.entity.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { Column, Entity, PrimaryColumn } from "typeorm";
|
||||
|
||||
@Entity('ESTCATEGORIACLIENTE')
|
||||
export class Estcategoriacliente {
|
||||
@PrimaryColumn({name: 'ID'})
|
||||
id: number;
|
||||
|
||||
@Column({name: 'DESCRICAO'})
|
||||
name: string;
|
||||
}
|
||||
Reference in New Issue
Block a user