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.LocalDate;import java.util.List;public class DispatchNotificationModel {private List<String> invoiceNumber;private Float totalAmount;private int totalQty;private int fofoId;private int providerId;private LocalDate date;public LocalDate getDate() {return date;}public void setDate(LocalDate date) {this.date = date;}public int getProviderId() {return providerId;}public void setProviderId(int providerId) {this.providerId = providerId;}public int getFofoId() {return fofoId;}public void setFofoId(int fofoId) {this.fofoId = fofoId;}public List<String> getInvoiceNumber() {return invoiceNumber;}public void setInvoiceNumber(List<String> invoiceNumber) {this.invoiceNumber = invoiceNumber;}public Float getTotalAmount() {return totalAmount;}public void setTotalAmount(Float totalAmount) {this.totalAmount = totalAmount;}public int getTotalQty() {return totalQty;}public void setTotalQty(int totalQty) {this.totalQty = totalQty;}@Overridepublic String toString() {return "DispatchNotificationModel [invoiceNumber=" + invoiceNumber + ", totalAmount=" + totalAmount+ ", totalQty=" + totalQty + "]";}}