admin
2020-06-20 0ab8a2ea521a838124f517daf4e61dee971a6d4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.ks.tool.bkz.vo.sdlj;
 
public class GoodsClassVO {
  private Integer id;
  private String name;
 
    public GoodsClassVO(Integer id, String name, Boolean selected) {
        this.id = id;
        this.name = name;
        this.selected = selected;
    }
 
 
    public GoodsClassVO(Integer id, String name) {
        this.id = id;
        this.name = name;
    }
 
 
    private Boolean selected;
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Boolean getSelected() {
        return selected;
    }
 
    public void setSelected(Boolean selected) {
        this.selected = selected;
    }
 
 
}