1 | static public class ProductId implements Serializable {↵ | | 1 | public class Customer extends Per↵
|
2 | String orgid;↵ | | |
|
3 | String productnumber;↵ | | |
|
4 | public String getProductnumber↵ | | 2 | son {↵
|
| | | 3 | private Employee salesperson;↵
|
| | | 4 | private String comments;↵
|
|
| | | 5 | /**↵
|
| | | 6 | * @return Returns the salesperson.↵
|
| | | 7 | */↵
|
5 | () {↵ | | 8 | public Employee getSalesperson() {↵
|
6 | ↵ | | |
|
7 | return productnumber;↵ | | 9 | return ↵
|
8 | }↵ | | |
|
9 | public void setProductnumber(String ordernumber) {↵ | | |
|
10 | this.productnumber = ordernumber;↵ | | |
|
11 | }↵ | | |
|
12 | ↵ | | 10 | salesperson;↵
|
| | | 11 | }↵
|
| | | 12 | /**↵
|
| | | 13 | * @param salesperson The salesperson to set.↵
|
| | | 14 | */↵
|
| | | 15 | public void setSalesperson(Employee salesperson) {↵
|
| | | 16 | this.salesperson = salesperson;↵
|
| | | 17 | }↵
|
| | | 18 | /**↵
|
| | | 19 | * @return Returns the comments.↵
|
| | | 20 | */↵
|
13 | public String getOrgid() {↵ | | 21 | public String getComments() {↵
|
14 | ↵ | | |
|
15 | return orgid;↵ | | 22 | return ↵
|
16 | }↵ | | |
|
17 | ↵ | | 23 | comments;↵
|
| | | 24 | }↵
|
| | | 25 | /**↵
|
| | | 26 | * @param comments The comments to set.↵
|
| | | 27 | */↵
|
18 | public void setOrgid(String orgid) {↵ | | 28 | public void set↵
|
19 | this.orgid = orgid;
↵ | | 29 | Comments(String comments) {↵
|
| | | 30 | this.comments = comments;↵
|
20 | | | 31 |
|