Subversion Repositories SmartDukaan

Rev

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

Rev 34301 Rev 34322
Line 1... Line 1...
1
package com.spice.profitmandi.web.req;
1
package com.spice.profitmandi.web.req;
2
 
2
 
3
public class RbmRatingRequest {
3
public class RbmSalesRatingRequest {
4
    private String comment;
4
    private String rbmComment;
5
    private int rating;
5
    private int rbmRating;
-
 
6
 
-
 
7
    private String salesComment;
-
 
8
    private int salesRating;
6
 
9
 
7
    // Getters and Setters
10
    // Getters and Setters
-
 
11
    public String getRbmComment() {
-
 
12
        return rbmComment;
-
 
13
    }
-
 
14
 
8
    public String getComment() { return comment; }
15
    public void setRbmComment(String rbmComment) {
-
 
16
        this.rbmComment = rbmComment;
-
 
17
    }
-
 
18
 
-
 
19
    public int getRbmRating() {
-
 
20
        return rbmRating;
-
 
21
    }
-
 
22
 
-
 
23
    public void setRbmRating(int rbmRating) {
-
 
24
        this.rbmRating = rbmRating;
-
 
25
    }
-
 
26
 
-
 
27
    public String getSalesComment() {
-
 
28
        return salesComment;
-
 
29
    }
-
 
30
 
9
    public void setComment(String comment) { this.comment = comment; }
31
    public void setSalesComment(String salesComment) {
-
 
32
        this.salesComment = salesComment;
-
 
33
    }
-
 
34
 
-
 
35
    public int getSalesRating() {
-
 
36
        return salesRating;
-
 
37
    }
10
 
38
 
11
    public int getRating() { return rating; }
39
    public void setSalesRating(int salesRating) {
12
    public void setRating(int rating) { this.rating = rating; }
40
        this.salesRating = salesRating;
-
 
41
    }
13
}
42
}