29 lines
863 B
TypeScript
29 lines
863 B
TypeScript
/**
|
|
* HistoricoPuntos Entity
|
|
* Histórico de puntos de crédito INFONAVIT
|
|
*
|
|
* @module Infonavit
|
|
* @table infonavit.historico_puntos
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
import { Derechohabiente } from './derechohabiente.entity';
|
|
export type MovimientoTipo = 'initial' | 'update' | 'adjustment' | 'precalification';
|
|
export declare class HistoricoPuntos {
|
|
id: string;
|
|
tenantId: string;
|
|
derechohabienteId: string;
|
|
recordDate: Date;
|
|
previousPoints: number;
|
|
newPoints: number;
|
|
pointsChange: number;
|
|
movementType: MovimientoTipo;
|
|
source: string;
|
|
notes: string;
|
|
createdAt: Date;
|
|
createdById: string;
|
|
tenant: Tenant;
|
|
derechohabiente: Derechohabiente;
|
|
createdBy: User;
|
|
}
|
|
//# sourceMappingURL=historico-puntos.entity.d.ts.map
|