|  |  |  | 
|---|
|  |  |  | package cc.mrbird.febs.mall.entity; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import cc.mrbird.febs.common.entity.BaseEntity; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.TableName; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | private Long orderId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Long skuId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String memberInviteId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Long memberCouponId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Long goodsId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | private Integer hasSettle; | 
|---|
|  |  |  | //1:正常 2:退款中3:已退 | 
|---|
|  |  |  | private Integer state; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private long[] orderIdsStr; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String unit; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private BigDecimal itemAmount; | 
|---|
|  |  |  | } | 
|---|