55 lines
872 B
Java
55 lines
872 B
Java
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;
|
|
|
|
|
|
}
|