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;
|
}
|