MCPcopy Create free account
hub / github.com/Java-Techie-jt/spring-boot3-jwt / Product

Class Product

src/main/java/com/javatechie/dto/Product.java:8–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import lombok.NoArgsConstructor;
7
8@Data
9@AllArgsConstructor
10@NoArgsConstructor
11@Builder
12public class Product {
13
14 private int productId;
15 private String name;
16 private int qty;
17 private double price;
18}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected