pos-be/src/core/modules/infrastructure/dto/base.dto.ts

12 lines
313 B
TypeScript

import { BaseEntity } from '../../domain/entities/base.entity';
import { BaseCoreDto } from './base-core.dto';
export class BaseDto extends BaseCoreDto implements BaseEntity {
creator_id: string;
creator_name: string;
editor_id: string;
editor_name: string;
created_at: number;
updated_at: number;
}