Subversion Repositories SmartDukaan

Rev

Rev 26674 | 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;
import java.util.List;

import com.spice.profitmandi.dao.enumuration.catalog.ItemCriteriaType;

public class CreateOfferRequest {

        private String name;
        private String description;
        private ItemCriteriaType itemCriteria;
        private List<AmountMarginModel> amountOffer;
        private List<Integer> fofoIds;
        private List<Integer> catalogIds;
        private List<String> brands;
        private String amountType;
        private String targetType;
        private LocalDateTime startDate;
        private LocalDateTime endDate;
        private int price;
        private double totalSale;
        private double shortAmount;
        private int margin;

        public double getShortAmount() {
                return shortAmount;
        }

        public void setShortAmount(double shortAmount) {
                this.shortAmount = shortAmount;
        }

        public double getTotalSale() {
                return totalSale;
        }

        public void setTotalSale(double totalSale) {
                this.totalSale = totalSale;
        }

        public int getMargin() {
                return margin;
        }

        public void setMargin(int margin) {
                this.margin = margin;
        }

        public int getPrice() {
                return price;
        }

        public void setPrice(int price) {
                this.price = price;
        }

        public List<Integer> getCatalogIds() {
                return catalogIds;
        }

        public void setCatalogIds(List<Integer> catalogIds) {
                this.catalogIds = catalogIds;
        }

        public String getName() {
                return name;
        }

        public void setName(String name) {
                this.name = name;
        }

        public String getDescription() {
                return description;
        }

        public void setDescription(String description) {
                this.description = description;
        }

        public ItemCriteriaType getItemCriteria() {
                return itemCriteria;
        }

        public void setItemCreteria(ItemCriteriaType itemCreteria) {
                this.itemCriteria = itemCreteria;
        }

        public List<AmountMarginModel> getAmountOffer() {
                return amountOffer;
        }

        public void setAmountOffer(List<AmountMarginModel> amountOffer) {
                this.amountOffer = amountOffer;
        }

        public List<Integer> getFofoIds() {
                return fofoIds;
        }

        public void setFofoIds(List<Integer> fofoIds) {
                this.fofoIds = fofoIds;
        }

        public List<String> getBrands() {
                return brands;
        }

        public void setBrands(List<String> brands) {
                this.brands = brands;
        }

        public String getAmountType() {
                return amountType;
        }

        public void setAmountType(String amountType) {
                this.amountType = amountType;
        }

        public String getTargetType() {
                return targetType;
        }

        public void setTargetType(String targetType) {
                this.targetType = targetType;
        }

        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;
        }

}