package com.xzx.gc.entity; import lombok.Data; import javax.persistence.Table; import java.math.BigDecimal; /** * @author wzy * @date 2021-06-21 **/ @Data @Table(name = "xzx_score_order_details") public class ScoreOrderDetails { private String goodsName; private BigDecimal unitPrice; private Integer cnt; private BigDecimal totalPrice; private String sku; private String style; private String thumb; private Long goodsId; private Long orderId; }