Subversion Repositories SmartDukaan

Rev

Rev 32074 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32074 Rev 33465
Line 2... Line 2...
2
 
2
 
3
import java.time.LocalDate;
3
import java.time.LocalDate;
4
 
4
 
5
public class VendorCatalogPricingModel {
5
public class VendorCatalogPricingModel {
6
 
6
 
-
 
7
    private int rowIndex;
7
    private int vendorId;
8
    private int vendorId;
8
    private int catalogId;
9
    private int catalogId;
9
    private float tp;
10
    private float tp;
10
    private float dp;
11
    private float dp;
11
    private float mop;
12
    private float mop;
Line 67... Line 68...
67
 
68
 
68
    public void setEffectedOn(LocalDate effectedOn) {
69
    public void setEffectedOn(LocalDate effectedOn) {
69
        this.effectedOn = effectedOn;
70
        this.effectedOn = effectedOn;
70
    }
71
    }
71
 
72
 
-
 
73
    public int getRowIndex() {
-
 
74
        return rowIndex;
-
 
75
    }
-
 
76
 
-
 
77
    public void setRowIndex(int rowIndex) {
-
 
78
        this.rowIndex = rowIndex;
-
 
79
    }
72
 
80
 
73
    @Override
81
    @Override
74
    public String toString() {
82
    public String toString() {
75
        return "VendorCatalogPricingModel [vendorId=" + vendorId + ", catalogId=" + catalogId + ", tp=" + tp + ", dp=" + dp + ", mop=" + mop + ", effectedOn=" + effectedOn + ", authId=" + authId + "]";
83
        return "VendorCatalogPricingModel [vendorId=" + vendorId + ", catalogId=" + catalogId + ", tp=" + tp + ", dp=" + dp + ", mop=" + mop + ", effectedOn=" + effectedOn + ", authId=" + authId + "]";
76
    }
84
    }