| 32256 |
tejbeer |
1 |
package com.spice.profitmandi.dao.model;
|
|
|
2 |
|
|
|
3 |
import com.spice.profitmandi.dao.enumuration.catalog.AchievementType;
|
|
|
4 |
import com.spice.profitmandi.dao.enumuration.catalog.AmountType;
|
|
|
5 |
import com.spice.profitmandi.dao.enumuration.catalog.OfferSchemeType;
|
|
|
6 |
|
|
|
7 |
import java.time.LocalDateTime;
|
|
|
8 |
import java.util.List;
|
|
|
9 |
|
|
|
10 |
public class OfferSellinRowModel {
|
|
|
11 |
private int id;
|
|
|
12 |
private String name;
|
|
|
13 |
private LocalDateTime startDate;
|
|
|
14 |
private LocalDateTime endDate;
|
|
|
15 |
private String storeName;
|
|
|
16 |
private OfferSchemeType offerSchemeType;
|
|
|
17 |
private int maxBrandSharePercentage;
|
|
|
18 |
private double totalPurchaseValue;
|
|
|
19 |
private double eligibleSaleDp;
|
|
|
20 |
private double totalGrnValue;
|
|
|
21 |
private double totalSale;
|
|
|
22 |
private double eligibleSale;
|
|
|
23 |
private List<String> pendingImeis;
|
|
|
24 |
private double achievedTarget;
|
|
|
25 |
private double nextTarget;
|
|
|
26 |
private int soldValue;
|
|
|
27 |
private AchievementType targetType;
|
|
|
28 |
private int currentPayoutTarget;
|
|
|
29 |
private int payoutTargetAchieved;
|
|
|
30 |
private float payoutValue;
|
|
|
31 |
private float payoutValueDp;
|
|
|
32 |
private AmountType amountType;
|
|
|
33 |
private double finalPayout;
|
|
|
34 |
}
|