37 lines
741 B
TypeScript
37 lines
741 B
TypeScript
import { Expose, Type } from 'class-transformer';
|
|
import { InstitucionInfraccionOutputDto } from '../../../institucion-infraccion/dto/output/institucion-infraccion.dto';
|
|
import { OperadorMinOutputDto } from '../../../operador/dto/output/operador-min.dto';
|
|
import { PrestamoMinOutputDto } from '../../../prestamo/dto/output/prestamo-min.dto';
|
|
|
|
export class MultasOutputDto {
|
|
@Expose()
|
|
id_multa;
|
|
|
|
@Expose()
|
|
activo;
|
|
|
|
@Expose()
|
|
descripcion;
|
|
|
|
@Expose()
|
|
fecha_fin;
|
|
|
|
@Expose()
|
|
fecha_inicio;
|
|
|
|
@Expose()
|
|
retraso;
|
|
|
|
@Expose()
|
|
@Type(() => OperadorMinOutputDto)
|
|
opeardorMulta;
|
|
|
|
@Expose()
|
|
@Type(() => PrestamoMinOutputDto)
|
|
prestamo;
|
|
|
|
@Expose()
|
|
@Type(() => InstitucionInfraccionOutputDto)
|
|
institucionInfraccion;
|
|
}
|