generator-chek-ms
Version:
boilerplate de creación de microservicios en Chek
69 lines (47 loc) • 936 B
text/typescript
import { Entity, Column, PrimaryGeneratedColumn } from 'typeorm';
export class Cashin {
id: number;
sia: string;
fullName: string;
nationalId: string;
amount: string;
data: JSON;
paymentCredit: JSON;
networkAccess: JSON;
systemService: JSON;
accountService: JSON;
cardTransactionRecord: JSON;
payment: JSON;
type: string;
request?: JSON;
response: JSON;
error?: JSON;
responseHeypay?: JSON;
status: string;
codeAuthorization: string;
createdAt?: Date;
updatedAt?: Date;
}