Subversion Repositories SmartDukaan

Rev

Rev 2119 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2119 Rev 2427
Line 2... Line 2...
2
 
2
 
3
import java.io.Serializable;
3
import java.io.Serializable;
4
 
4
 
5
import com.google.gwt.user.client.rpc.IsSerializable;
5
import com.google.gwt.user.client.rpc.IsSerializable;
6
 
6
 
-
 
7
/**
-
 
8
 * Vendor prices bean to store mop, dealer price and transfer price for a vendor.
-
 
9
 *
-
 
10
 */
-
 
11
@SuppressWarnings("serial")
7
public class VendorPricings implements IsSerializable, Serializable {
12
public class VendorPricings implements IsSerializable, Serializable {
8
    long vendorId;
13
    long vendorId;
9
    double mop, dealerPrice, transferPrice;
14
    double mop, dealerPrice, transferPrice;
10
    
15
    
11
    public VendorPricings() {
16
    public VendorPricings() {