123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- package com.kmall.admin.entity;
- import lombok.Data;
- import java.io.Serializable;
- import java.math.BigDecimal;
- /**
- * 订单主表信息
- */
- @Data
- public class VmcconnectOrderInfoEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 外部订单号,门店侧订单号
- */
- private String outer_order_no;
- /**
- * 支付方式
- */
- private String pay_app;
- /**
- * 配送方式 默认:SF
- */
- private String dlytype_code;
- /**
- * 收货人
- */
- private String consignee_name;
- /**
- * 收货地址省份
- */
- private String consignee_area_province;
- /**
- * 收货地址城市
- */
- private String consignee_area_city;
- /**
- * 收货地址地区
- */
- private String consignee_area_county;
- /**
- * 收货地址详细地址
- */
- private String consignee_address;
- /**
- * 收货人的邮编
- */
- private String consignee_zip;
- /**
- * 收货人的联系电话
- */
- private String consignee_tel;
- /**
- * 收货人的邮箱
- */
- private String consignee_email;
- /**
- * 收货人的手机号
- */
- private String consignee_mobile;
- /**
- * 订单商品总重量(克)
- */
- private BigDecimal weight;
- /**
- * 订单包含商品数量
- */
- private Integer quantity;
- /**
- * 配送费用
- */
- //private BigDecimal cost_freight;
- /**
- * 订单应付总金额
- */
- private BigDecimal order_total;
- /**
- * 下单的平台
- */
- private BigDecimal platform;
- }
|