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