Rev 33795 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;import com.spice.profitmandi.common.enumuration.OfferType;import java.time.LocalDateTime;public class CustomerOfferItemModel {private int catalogId;private int customerOfferId;private int schemePayout;private String additionalInfo;private int dealerPayout;private OfferType offerType;private LocalDateTime startDate;private LocalDateTime endDate;private int offerId;public int getOfferId() {return offerId;}public void setOfferId(int offerId) {this.offerId = offerId;}public int getCatalogId() {return catalogId;}public void setCatalogId(int catalogId) {this.catalogId = catalogId;}public int getCustomerOfferId() {return customerOfferId;}public void setCustomerOfferId(int customerOfferId) {this.customerOfferId = customerOfferId;}public int getSchemePayout() {return schemePayout;}public void setSchemePayout(int schemePayout) {this.schemePayout = schemePayout;}public int getDealerPayout() {return dealerPayout;}public void setDealerPayout(int dealerPayout) {this.dealerPayout = dealerPayout;}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 OfferType getOfferType() {return offerType;}public void setOfferType(OfferType offerType) {this.offerType = offerType;}public String getAdditionalInfo() {return additionalInfo;}public void setAdditionalInfo(String additionalInfo) {this.additionalInfo = additionalInfo;}@Overridepublic String toString() {return "CustomerOfferItemModel{" +"catalogId=" + catalogId +", customerOfferId=" + customerOfferId +", schemePayout=" + schemePayout +", additionalInfo='" + additionalInfo + '\'' +", dealerPayout=" + dealerPayout +", offerType=" + offerType +", startDate=" + startDate +", endDate=" + endDate +", offerId=" + offerId +'}';}}