Helius
2022-09-23 7c6f033b8754b07bf5c75ae8745a982d76f9abb4
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package cc.mrbird.febs.mall.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
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 extends BaseEntity {
 
    private Long orderId;
 
    private Long skuId;
 
    private Long goodsId;
 
    private String goodsName;
 
    private String styleName;
 
    private String skuName;
 
    private String skuImage;
 
    private Integer cnt;
 
    private BigDecimal price;
 
    private BigDecimal amount;
 
    private BigDecimal costPrice;
 
    private Integer isNormal;
 
    /**
     * 是否结清
     */
    private Integer hasSettle;
    //1:正常 2:退款中3:已退
    private Integer state;
}