vendaweb-api/src/domain/entity/tables/pcfilial.entity.ts

15 lines
289 B
TypeScript
Raw Normal View History

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;
2025-01-27 20:44:27 +00:00
}