package com.matrix.system.score.entity;
|
|
import com.matrix.core.anotations.Extend;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @description 订单表
|
* @author jyy
|
* @date 2021-02-26 15:26
|
*/
|
@Data
|
@TableName("score_goods_order")
|
public class ScoreOrder extends BaseEntity{
|
@Extend
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
/**
|
* 订单编号
|
*/
|
|
|
private String orderCode;
|
|
/**
|
* 会员ID(openID)
|
*/
|
|
|
private String memberId;
|
|
/**
|
* 联系方式
|
*/
|
|
|
private String memberPhone;
|
|
/**
|
* 支付总积分
|
*/
|
|
|
private Integer payTotalScore;
|
|
/**
|
* 订单状态(1:待支付2:待配送3:待收货4:已收货)
|
*/
|
|
|
private Integer orderState;
|
|
/**
|
* 下单时间
|
*/
|
|
|
private Date orderTime;
|
|
/**
|
* 支付时间
|
*/
|
|
|
private Date payTime;
|
|
/**
|
* 收货方式(1物流2自提)
|
*/
|
|
|
private Integer receiveWay;
|
|
/**
|
* 收货地址ID
|
*/
|
|
|
private Long addressId;
|
|
/**
|
* 自提门店地址
|
*/
|
|
|
private String selfAddress;
|
|
/**
|
* 自提时间
|
*/
|
|
|
private Date selfTime;
|
|
/**
|
* 物流ID
|
*/
|
|
|
private Long logisticsId;
|
|
/**
|
* 备注
|
*/
|
|
|
private String remarks;
|
|
/**
|
* 所属公司_ID
|
*/
|
|
|
private Long companyId;
|
|
|
|
|
}
|