Subversion Repositories SmartDukaan

Rev

Rev 21923 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

import java.util.Set;

public class PdfModel {
        private String title;
        private String auther;
        private CustomCustomer customer;
        private CustomRetailer retailer;
        private String invoiceNumber;
        private Set<CustomFofoOrderItem> orderItems;
        private float totalAmount;
        public String getTitle() {
                return title;
        }
        public void setTitle(String title) {
                this.title = title;
        }
        public String getAuther() {
                return auther;
        }
        public void setAuther(String auther) {
                this.auther = auther;
        }
        public CustomCustomer getCustomer() {
                return customer;
        }
        public void setCustomer(CustomCustomer customer) {
                this.customer = customer;
        }
        public CustomRetailer getRetailer() {
                return retailer;
        }
        public void setRetailer(CustomRetailer retailer) {
                this.retailer = retailer;
        }
        public String getInvoiceNumber() {
                return invoiceNumber;
        }
        public void setInvoiceNumber(String invoiceNumber) {
                this.invoiceNumber = invoiceNumber;
        }
        public Set<CustomFofoOrderItem> getOrderItems() {
                return orderItems;
        }
        public void setOrderItems(Set<CustomFofoOrderItem> orderItems) {
                this.orderItems = orderItems;
        }
        public float getTotalAmount() {
                return totalAmount;
        }
        public void setTotalAmount(float totalAmount) {
                this.totalAmount = totalAmount;
        }
}