Helius
2021-09-18 843883c439cdb30979a78295dc32e8f9eee4896d
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 cc.mrbird.febs.mall.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author wzy
 * @date 2021-09-18
 **/
@Data
@TableName("mall_order_item")
public class MallOrderItem {
 
    private Long orderId;
 
    private Long skuId;
 
    private Long goodsId;
 
    private String goodsName;
 
    private String styleName;
 
    private String skuName;
 
    private Integer cnt;
 
    private BigDecimal price;
 
    private BigDecimal amount;
}