Files
wb-java-nc-shop/src/main/java/com/nlshop/entity/OrderItem.java
2026-01-11 18:14:42 +08:00

20 lines
449 B
Java

package com.nlshop.entity;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class OrderItem {
private Long id;
private Long orderId;
private Long productId;
private String productName;
private String specName;
private Integer quantity;
private BigDecimal price;
private String customSweetness;
private String customIce;
private String toppings; // JSON格式
private BigDecimal subtotal;
}