commit
This commit is contained in:
15
src/domain/entity/tables/pcfilial.entity.ts
Normal file
15
src/domain/entity/tables/pcfilial.entity.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Column, Entity, PrimaryColumn } from "typeorm";
|
||||
|
||||
@Entity("PCFILIAL")
|
||||
export class Store {
|
||||
|
||||
@PrimaryColumn({name: "CODIGO"})
|
||||
id: string;
|
||||
|
||||
@Column({name: "RAZAOSOCIAL"})
|
||||
name: string;
|
||||
|
||||
@Column({name: "FANTASIA"})
|
||||
shortName: string;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user