first commit
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
package com.peanut.modules.book.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* 发送快递商品详情
|
||||
*/
|
||||
@Data
|
||||
@TableName("fms_commodity")
|
||||
public class FMSCommodity implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 商品名称
|
||||
*/
|
||||
private String goodsName;
|
||||
|
||||
/**
|
||||
* 商品数量
|
||||
*/
|
||||
private Integer goodsQuantity;
|
||||
|
||||
/**
|
||||
* 商品价格
|
||||
*/
|
||||
private BigDecimal goodsPrice;
|
||||
|
||||
/**
|
||||
* 商品重量kg
|
||||
*/
|
||||
private Float goodsWeight;
|
||||
|
||||
/**
|
||||
* 商品描述
|
||||
*/
|
||||
private String goodsDesc;
|
||||
|
||||
/**
|
||||
* 发送快递表主键
|
||||
*/
|
||||
private Integer fmsOrderId;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user