31 lines
723 B
Java
31 lines
723 B
Java
package com.auction;
|
|
|
|
import java.time.Duration;
|
|
import java.time.LocalDateTime;
|
|
|
|
/**
|
|
* Represents a lot (kavel) in an auction.
|
|
* Data typically populated by the external scraper process.
|
|
* This project enriches the data with image analysis and monitoring.
|
|
*/
|
|
record Lot(
|
|
int saleId,
|
|
int lotId,
|
|
String title,
|
|
String description,
|
|
String manufacturer,
|
|
String type,
|
|
int year,
|
|
String category,
|
|
double currentBid,
|
|
String currency,
|
|
String url,
|
|
LocalDateTime closingTime,
|
|
boolean closingNotified
|
|
) {
|
|
long minutesUntilClose() {
|
|
if (closingTime == null) return Long.MAX_VALUE;
|
|
return Duration.between(LocalDateTime.now(), closingTime).toMinutes();
|
|
}
|
|
}
|