commit
This commit is contained in:
23
src/domain/entity/views/esvparcelamentovenda.entity.ts
Normal file
23
src/domain/entity/views/esvparcelamentovenda.entity.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { Column, Entity, PrimaryColumn } from "typeorm";
|
||||
|
||||
@Entity('ESVPARCELAMENTOVENDA')
|
||||
export class Esvparcelamentovenda {
|
||||
@PrimaryColumn({name: 'CODFILIAL'})
|
||||
store: string;
|
||||
|
||||
@PrimaryColumn({name: 'CODPROD'})
|
||||
productId: number;
|
||||
|
||||
@Column({name: 'NUMREGIAO'})
|
||||
priceTable: number;
|
||||
|
||||
@Column({name: 'PARCELAS'})
|
||||
installments: number;
|
||||
|
||||
@Column({name: 'PRECOVENDA'})
|
||||
salePrice: number;
|
||||
|
||||
@Column({name: 'VALORPARCELA'})
|
||||
installmentValue: number;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user