xiaoyong931011
2021-06-22 38609ee05255ce5c36f308fe8d595555a86f9ba3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
}