Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
37080 amit 1
package com.spice.profitmandi.dao.service.biuedart;
2
 
3
import com.fasterxml.jackson.annotation.JsonProperty;
4
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
5
 
6
import java.time.LocalDate;
7
import java.util.ArrayList;
8
import java.util.Date;
9
import java.util.List;
10
 
11
class Dimension {
12
    @JsonProperty("Breadth")
13
    private int breadth;
14
 
15
    @JsonProperty("Count")
16
    private int count;
17
 
18
    @JsonProperty("Height")
19
    private int height;
20
 
21
    @JsonProperty("Length")
22
    private int length;
23
 
24
    public int getBreadth() {
25
        return breadth;
26
    }
27
 
28
    public void setBreadth(int breadth) {
29
        this.breadth = breadth;
30
    }
31
 
32
    public int getCount() {
33
        return count;
34
    }
35
 
36
    public void setCount(int count) {
37
        this.count = count;
38
    }
39
 
40
    public int getHeight() {
41
        return height;
42
    }
43
 
44
    public void setHeight(int height) {
45
        this.height = height;
46
    }
47
 
48
    public int getLength() {
49
        return length;
50
    }
51
 
52
    public void setLength(int length) {
53
        this.length = length;
54
    }
55
 
56
    // Constructors, getters, and setters
57
}