MCPcopy Create free account
hub / github.com/airscholar/FlinkCommerce / Transaction

Class Transaction

src/main/java/Dto/Transaction.java:7–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5import java.sql.Timestamp;
6
7@Data
8public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected