|  |  |  | 
|---|
|  |  |  | 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 skuId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String memberInviteId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Long memberCouponId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Long goodsId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String goodsName; | 
|---|
|  |  |  | 
|---|
|  |  |  | private BigDecimal price; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private BigDecimal amount; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private BigDecimal costPrice; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Integer isNormal; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 是否结清 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | 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; | 
|---|
|  |  |  | } | 
|---|