Rev 33795 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;import java.time.LocalDateTime;public class CustomerOfferItemModel {private int catalogId;private int customerOfferId;private int schemePayout;private int dealerPayout;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;}@Overridepublic String toString() {return "CustomerOfferItemModel [catalogId=" + catalogId + ", customerOfferId=" + customerOfferId+ ", schemePayout=" + schemePayout + ", dealerPayout=" + dealerPayout + ", startDate=" + startDate+ ", endDate=" + endDate + ", offerId=" + offerId + "]";}}