Subversion Repositories SmartDukaan

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.model;

import com.spice.profitmandi.dao.enumuration.catalog.AchievementType;
import com.spice.profitmandi.dao.enumuration.catalog.AmountType;
import com.spice.profitmandi.dao.enumuration.catalog.OfferSchemeType;

import java.time.LocalDateTime;
import java.util.List;

public class OfferSellinRowModel {
        private int id;
        private String name;
        private LocalDateTime startDate;
        private LocalDateTime endDate;
        private String storeName;
        private OfferSchemeType offerSchemeType;
        private int maxBrandSharePercentage;
        private double totalPurchaseValue;
        private double eligibleSaleDp;
        private double totalGrnValue;
        private double totalSale;
        private double eligibleSale;
        private List<String> pendingImeis;
        private double achievedTarget;
        private double nextTarget;
        private int soldValue;
        private AchievementType targetType;
        private int currentPayoutTarget;
        private int payoutTargetAchieved;
        private float payoutValue;
        private float payoutValueDp;
        private AmountType amountType;
        private double finalPayout;
}