Subversion Repositories SmartDukaan

Rev

Rev 34492 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.catalog;

import com.spice.profitmandi.common.model.ProfitMandiConstants;

import java.time.LocalDateTime;

public class LiquidationModel {

    private Integer id;
    private Integer catalogId;
    private Boolean restricted;
    private LocalDateTime startDate;
    private LocalDateTime endDate;
    private float price;
    private ProfitMandiConstants.LIQUIDATION_ENUM status;
    private int quantity;
    private int incrementStep;
    private String liquidationIds;
    private String mediaId;

    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 Boolean getRestricted() {
        return restricted;
    }

    public void setRestricted(Boolean restricted) {
        this.restricted = restricted;
    }

    public LocalDateTime getStartDate() {
        return startDate;
    }

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

    public LocalDateTime getEndDate() {
        return endDate;
    }

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

    public float getPrice() {
        return price;
    }

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

    public int getQuantity() {
        return quantity;
    }

    public void setQuantity(int quantity) {
        this.quantity = quantity;
    }

    public ProfitMandiConstants.LIQUIDATION_ENUM getStatus() {
        return status;
    }

    public void setStatus(ProfitMandiConstants.LIQUIDATION_ENUM status) {
        this.status = status;
    }

    public int getIncrementStep() {
        return incrementStep;
    }

    public void setIncrementStep(int incrementStep) {
        this.incrementStep = incrementStep;
    }

    public String getLiquidationIds() {
        return liquidationIds;
    }

    public void setLiquidationIds(String liquidationIds) {
        this.liquidationIds = liquidationIds;
    }

    public String getMediaId() {
        return mediaId;
    }

    public void setMediaId(String mediaId) {
        this.mediaId = mediaId;
    }

    @Override
    public String toString() {
        return "LiquidationModel{" +
                "id=" + id +
                ", catalogId=" + catalogId +
                ", restricted=" + restricted +
                ", startDate=" + startDate +
                ", endDate=" + endDate +
                ", price=" + price +
                ", status=" + status +
                ", quantity=" + quantity +
                ", incrementStep=" + incrementStep +
                ", liquidationIds='" + liquidationIds + '\'' +
                ", mediaId='" + mediaId + '\'' +
                '}';
    }
}