Subversion Repositories SmartDukaan

Rev

Rev 34405 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.catalog;

import com.spice.profitmandi.dao.entity.catalog.Liquidation;

import java.math.BigDecimal;
import java.time.LocalDate;

public class LiquidationModel {

    private Integer id;
    private Integer catalogId;
    private Integer warehouseId;
    private LocalDate startDate;
    private LocalDate endDate;
    private BigDecimal price;
    private Liquidation.Status status;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public Integer getCatalogId() {
        return catalogId;
    }

    public void setCatalogId(Integer catalogId) {
        this.catalogId = catalogId;
    }

    public Integer getWarehouseId() {
        return warehouseId;
    }

    public void setWarehouseId(Integer warehouseId) {
        this.warehouseId = warehouseId;
    }

    public LocalDate getStartDate() {
        return startDate;
    }

    public void setStartDate(LocalDate startDate) {
        this.startDate = startDate;
    }

    public LocalDate getEndDate() {
        return endDate;
    }

    public void setEndDate(LocalDate endDate) {
        this.endDate = endDate;
    }

    public BigDecimal getPrice() {
        return price;
    }

    public void setPrice(BigDecimal price) {
        this.price = price;
    }

    public Liquidation.Status getStatus() {
        return status;
    }

    public void setStatus(Liquidation.Status status) {
        this.status = status;
    }

    @Override
    public String toString() {
        return "LiquidationModel{" +
                "id=" + id +
                ", catalogId=" + catalogId +
                ", warehouseId=" + warehouseId +
                ", startDate=" + startDate +
                ", endDate=" + endDate +
                ", price=" + price +
                ", status=" + status +
                '}';
    }
}