order list
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
package com.peanut.modules.book.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* @Description: 订单-商品
|
||||
* @Author: Cauchy
|
||||
* @CreateTime: 2023/10/19
|
||||
*/
|
||||
@Data
|
||||
@TableName("buy_order_product")
|
||||
public class BuyOrderProduct {
|
||||
/**
|
||||
* 主键 ID
|
||||
*/
|
||||
private int id;
|
||||
/**
|
||||
* 订单 ID
|
||||
*/
|
||||
private int orderId;
|
||||
/**
|
||||
* 商品 ID
|
||||
*/
|
||||
private int productId;
|
||||
/**
|
||||
* 商品数量
|
||||
*/
|
||||
private int quantity;
|
||||
/**
|
||||
* 商品价格
|
||||
*/
|
||||
private BigDecimal realPrice;
|
||||
/**
|
||||
* 快递订单 ID
|
||||
*/
|
||||
private int express_order_id;
|
||||
/**
|
||||
* 删除标识
|
||||
*/
|
||||
private int delFlag;
|
||||
}
|
||||
Reference in New Issue
Block a user