| 5 | import java.sql.Timestamp; |
| 6 | |
| 7 | @Data |
| 8 | public class Transaction { |
| 9 | private String transactionId; |
| 10 | private String productId; |
| 11 | private String productName; |
| 12 | private String productCategory; |
| 13 | private double productPrice; |
| 14 | private int productQuantity; |
| 15 | private String productBrand; |
| 16 | private double totalAmount; |
| 17 | private String currency; |
| 18 | private String customerId; |
| 19 | private Timestamp transactionDate; |
| 20 | private String paymentMethod; |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected