Subversion Repositories SmartDukaan

Rev

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

Rev 2427 Rev 6759
Line 9... Line 9...
9
 *
9
 *
10
 */
10
 */
11
@SuppressWarnings("serial")
11
@SuppressWarnings("serial")
12
public class VendorPricings implements IsSerializable, Serializable {
12
public class VendorPricings implements IsSerializable, Serializable {
13
    long vendorId;
13
    long vendorId;
14
    double mop, dealerPrice, transferPrice;
14
    double mop, dealerPrice, transferPrice, nlc;
15
    
15
    
16
    public VendorPricings() {
16
    public VendorPricings() {
17
        
17
        
18
    }
18
    }
19
    
19
    
20
    public VendorPricings(long vendorId, String itemKey, double mop, double dp, double tp) {
20
    public VendorPricings(long vendorId, String itemKey, double mop, double dp, double tp, double nlc) {
21
        this.vendorId = vendorId;
21
        this.vendorId = vendorId;
22
        this.mop = mop;
22
        this.mop = mop;
23
        this.dealerPrice = dp;
23
        this.dealerPrice = dp;
24
        this.transferPrice = tp;
24
        this.transferPrice = tp;
-
 
25
        this.nlc = nlc;
25
    }
26
    }
26
    
27
    
27
    public long getVendorId() {
28
    public long getVendorId() {
28
        return vendorId;
29
        return vendorId;
29
    }
30
    }
Line 46... Line 47...
46
        return transferPrice;
47
        return transferPrice;
47
    }
48
    }
48
    public void setTransferPrice(double transferPrice) {
49
    public void setTransferPrice(double transferPrice) {
49
        this.transferPrice = transferPrice;
50
        this.transferPrice = transferPrice;
50
    }
51
    }
-
 
52
 
-
 
53
	public double getNlc() {
-
 
54
		return nlc;
-
 
55
	}
-
 
56
 
-
 
57
	public void setNlc(double nlc) {
-
 
58
		this.nlc = nlc;
-
 
59
	}
51
}
60
}