View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.service.dtdc;import com.fasterxml.jackson.annotation.JsonProperty;public class PiecesDetail {@JsonProperty("description")private String description;@JsonProperty("declared_value")private double declaredValue;@JsonProperty("weight")private String weight;@JsonProperty("height")private double height;@JsonProperty("length")private double length;@JsonProperty("width")private double width;public String getDescription() {return description;}public void setDescription(String description) {this.description = description;}public double getDeclaredValue() {return declaredValue;}public void setDeclaredValue(double declaredValue) {this.declaredValue = declaredValue;}public String getWeight() {return weight;}public void setWeight(String weight) {this.weight = weight;}public double getHeight() {return height;}public void setHeight(double height) {this.height = height;}public double getLength() {return length;}public void setLength(double length) {this.length = length;}public double getWidth() {return width;}public void setWidth(double width) {this.width = width;}@Overridepublic String toString() {return "PiecesDetail [description=" + description + ", declaredValue=" + declaredValue + ", weight=" + weight+ ", height=" + height + ", length=" + length + ", width=" + width + "]";}}