Files
auctiora/src/main/java/com/auction/Lot.java
2025-12-03 15:32:34 +01:00

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();
}
}