import { ApiProperty } from '@nestjs/swagger';

export class MatrixEntity {
	@ApiProperty()
	id: number;

	@ApiProperty()
	createdAt: Date;

	@ApiProperty()
	updatedAt: Date;

	@ApiProperty()
	tableName: string;

	@ApiProperty()
	columnName: string;

	@ApiProperty()
	type: string;

	@ApiProperty()
	quantity: number;

	@ApiProperty()
	markUp: number;

	@ApiProperty()
	amount: number;
}
