package com.yanzuoguang.wxxcx.logistics.vo; /*** * 包裹信息,将传递给快递公司 * * @author:heyanou */ public class LogisticsCargo { /*** * <p> * 是否必填:是 * 包裹数量, 默认为1 * </p> */ private Long count; /*** * <p> * 是否必填:是 * 包裹总重量,单位是千克(kg) * </p> */ private double weight; /*** * <p> * 是否必填:是 * 包裹长度,单位厘米(cm) * </p> */ private double space_x; /*** * <p> * 是否必填:是 * 包裹宽度,单位厘米(cm) * </p> */ private double space_y; /*** * <p> * 是否必填:是 * 包裹高度,单位厘米(cm) * </p> */ private double space_z; /*** * <p> * 是否必填:是 * 包裹中商品详情列表 * </p> */ private DetailList detail_list; public Long getCount() { return count; } public void setCount(Long count) { this.count = count; } public double getWeight() { return weight; } public void setWeight(double weight) { this.weight = weight; } public double getSpace_x() { return space_x; } public void setSpace_x(double space_x) { this.space_x = space_x; } public double getSpace_y() { return space_y; } public void setSpace_y(double space_y) { this.space_y = space_y; } public double getSpace_z() { return space_z; } public void setSpace_z(double space_z) { this.space_z = space_z; } public DetailList getDetail_list() { return detail_list; } public void setDetail_list(DetailList detail_list) { this.detail_list = detail_list; } }