Files
portalweb-api/src/orders/dto/emitente.dto.ts
Joelson e081df9ced first
2025-09-17 18:49:23 -03:00

28 lines
578 B
TypeScript

import { ApiProperty } from '@nestjs/swagger';
/**
* DTO para dados do emitente da nota fiscal
*/
export class EmitenteDto {
@ApiProperty({
description: 'Código do emitente da nota fiscal',
example: 32,
nullable: true,
})
codEmitente: number | null;
@ApiProperty({
description: 'Matrícula do funcionário emitente',
example: 32,
nullable: true,
})
emitenteMatricula: number | null;
@ApiProperty({
description: 'Nome do funcionário emitente',
example: 'João Silva',
nullable: true,
})
emitenteNome: string | null;
}