matcher/src/modules/ad/domain/entities/ad.ts

109 lines
1.3 KiB
TypeScript
Raw Normal View History

2023-04-24 14:44:52 +00:00
import { AutoMap } from '@automapper/classes';
export class Ad {
@AutoMap()
uuid: string;
@AutoMap()
2023-04-24 14:44:52 +00:00
driver: boolean;
@AutoMap()
2023-04-24 14:44:52 +00:00
passenger: boolean;
@AutoMap()
2023-04-24 14:44:52 +00:00
frequency: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
fromDate: string;
@AutoMap()
2023-04-24 14:44:52 +00:00
toDate: string;
@AutoMap()
2023-04-24 14:44:52 +00:00
monTime: string;
@AutoMap()
2023-04-24 14:44:52 +00:00
tueTime: string;
@AutoMap()
2023-04-24 14:44:52 +00:00
wedTime: string;
@AutoMap()
2023-04-24 14:44:52 +00:00
thuTime: string;
@AutoMap()
2023-04-24 14:44:52 +00:00
friTime: string;
@AutoMap()
2023-04-24 14:44:52 +00:00
satTime: string;
@AutoMap()
2023-04-24 14:44:52 +00:00
sunTime: string;
@AutoMap()
2023-04-24 14:44:52 +00:00
monMargin: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
tueMargin: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
wedMargin: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
thuMargin: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
friMargin: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
satMargin: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
sunMargin: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
driverDuration: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
driverDistance: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
passengerDuration: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
passengerDistance: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
originType: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
destinationType: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
waypoints: [];
@AutoMap()
2023-04-24 14:44:52 +00:00
direction: string;
@AutoMap()
2023-04-24 14:44:52 +00:00
fwdAzimuth: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
backAzimuth: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
seatsDriver: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
seatsPassenger: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
seatsUsed: number;
@AutoMap()
2023-04-24 14:44:52 +00:00
createdAt: string;
@AutoMap()
2023-04-24 14:44:52 +00:00
updatedAt: string;
}