package com.matrix.system.score.entity;
|
|
import com.matrix.core.anotations.Extend;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
/**
|
* @description 订单详情表
|
* @author jyy
|
* @date 2021-02-26 15:26
|
*/
|
@Data
|
@TableName("score_order_item")
|
public class ScoreOrderItem extends BaseEntity{
|
@Extend
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
/**
|
* 商品id
|
*/
|
|
|
private Long goodsId;
|
|
/**
|
* 商品名称
|
*/
|
|
|
private String goodsName;
|
|
/**
|
* 商品编码
|
*/
|
|
|
private String goodsCode;
|
|
/**
|
* 数量
|
*/
|
|
|
private Integer goodsNum;
|
|
/**
|
* 支付积分
|
*/
|
|
|
private Integer payScore;
|
|
/**
|
* 订单ID
|
*/
|
|
|
private Long orderId;
|
|
/**
|
* 所属公司_id
|
*/
|
|
|
private Long companyId;
|
|
|
|
|
}
|