Rev 34387 | Rev 34443 | 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 Boolean restricted;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 Boolean getRestricted() {return restricted;}public void setRestricted(Boolean restricted) {this.restricted = restricted;}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;}@Overridepublic String toString() {return "LiquidationModel{" +"id=" + id +", catalogId=" + catalogId +", restricted=" + restricted +", startDate=" + startDate +", endDate=" + endDate +", price=" + price +", status=" + status +'}';}}