Subversion Repositories SmartDukaan

Rev

Rev 34405 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
34387 vikas.jang 1
package com.spice.profitmandi.service.catalog;
2
 
3
import com.spice.profitmandi.dao.entity.catalog.Liquidation;
4
 
5
import java.math.BigDecimal;
6
import java.time.LocalDate;
7
 
8
public class LiquidationModel {
9
 
10
    private Integer id;
11
    private Integer catalogId;
12
    private Integer warehouseId;
13
    private LocalDate startDate;
14
    private LocalDate endDate;
15
    private BigDecimal price;
16
    private Liquidation.Status status;
17
 
18
    public Integer getId() {
19
        return id;
20
    }
21
 
22
    public void setId(Integer id) {
23
        this.id = id;
24
    }
25
 
26
    public Integer getCatalogId() {
27
        return catalogId;
28
    }
29
 
30
    public void setCatalogId(Integer catalogId) {
31
        this.catalogId = catalogId;
32
    }
33
 
34
    public Integer getWarehouseId() {
35
        return warehouseId;
36
    }
37
 
38
    public void setWarehouseId(Integer warehouseId) {
39
        this.warehouseId = warehouseId;
40
    }
41
 
42
    public LocalDate getStartDate() {
43
        return startDate;
44
    }
45
 
46
    public void setStartDate(LocalDate startDate) {
47
        this.startDate = startDate;
48
    }
49
 
50
    public LocalDate getEndDate() {
51
        return endDate;
52
    }
53
 
54
    public void setEndDate(LocalDate endDate) {
55
        this.endDate = endDate;
56
    }
57
 
58
    public BigDecimal getPrice() {
59
        return price;
60
    }
61
 
62
    public void setPrice(BigDecimal price) {
63
        this.price = price;
64
    }
65
 
66
    public Liquidation.Status getStatus() {
67
        return status;
68
    }
69
 
70
    public void setStatus(Liquidation.Status status) {
71
        this.status = status;
72
    }
73
 
74
    @Override
75
    public String toString() {
76
        return "LiquidationModel{" +
77
                "id=" + id +
78
                ", catalogId=" + catalogId +
79
                ", warehouseId=" + warehouseId +
80
                ", startDate=" + startDate +
81
                ", endDate=" + endDate +
82
                ", price=" + price +
83
                ", status=" + status +
84
                '}';
85
    }
86
}