1 | public class Employee implements Serializable {↵ | | 1 | static public class ProductId implements Serializable {
↵
|
2 | private Integer id;↵ | | 2 | String orgid;
↵
|
3 | private Collection employers;↵ | | 3 | ↵
|
|
|
| | | 4 | String productnumber;↵
|
4 | public Integer getId() {↵ | | 5 | public String getProductnumber() {↵
|
|
5 | return id;↵ | | 6 | return ↵
|
6 | }↵ | | |
|
|
7 | public void setId(Integer integer) {↵ | | |
|
8 | id = integer;↵ | | |
|
| | | 7 | productnumber;↵
|
| | | 8 | }↵
|
| | | 9 | public void setProductnumber(String ordernumber) {↵
|
| | | 10 | this.productnumber = ordernumber;↵
|
9 | }↵ | | 11 | }
↵
|
10 | ↵ | | 12 | ↵
|
11 | ↵ | | |
|
12 | public Collection getEmployers() {↵ | | 13 | public String getOrgid() {
↵
|
13 | return employers;↵ | | 14 | return ↵
|
14 | }↵ | | 15 | orgid;↵
|
| | | 16 | }
↵
|
15 | ↵ | | 17 | ↵
|
16 | public void setEmployers(Collection employers) {↵ | | 18 | public void setOrgid(String orgid) {
↵
|
17 | this.employers = employers | | 19 | this.orgid = orgid
|