Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
31568 tejbeer 1
package com.spice.profitmandi.dao.service.dtdc;
2
 
3
import com.fasterxml.jackson.annotation.JsonProperty;
4
 
5
public class PiecesDetail {
6
 
7
	@JsonProperty("description")
8
	private String description;
9
 
10
	@JsonProperty("declared_value")
11
	private double declaredValue;
12
 
13
	@JsonProperty("weight")
14
	private String weight;
15
 
16
	@JsonProperty("height")
17
	private double height;
18
 
19
	@JsonProperty("length")
20
	private double length;
21
 
22
	@JsonProperty("width")
23
	private double width;
24
 
25
	public String getDescription() {
26
		return description;
27
	}
28
 
29
	public void setDescription(String description) {
30
		this.description = description;
31
	}
32
 
33
	public double getDeclaredValue() {
34
		return declaredValue;
35
	}
36
 
37
	public void setDeclaredValue(double declaredValue) {
38
		this.declaredValue = declaredValue;
39
	}
40
 
41
	public String getWeight() {
42
		return weight;
43
	}
44
 
45
	public void setWeight(String weight) {
46
		this.weight = weight;
47
	}
48
 
49
	public double getHeight() {
50
		return height;
51
	}
52
 
53
	public void setHeight(double height) {
54
		this.height = height;
55
	}
56
 
57
	public double getLength() {
58
		return length;
59
	}
60
 
61
	public void setLength(double length) {
62
		this.length = length;
63
	}
64
 
65
	public double getWidth() {
66
		return width;
67
	}
68
 
69
	public void setWidth(double width) {
70
		this.width = width;
71
	}
72
 
73
	@Override
74
	public String toString() {
75
		return "PiecesDetail [description=" + description + ", declaredValue=" + declaredValue + ", weight=" + weight
76
				+ ", height=" + height + ", length=" + length + ", width=" + width + "]";
77
	}
78
 
79
}