File tree Expand file tree Collapse file tree
client/src/main/java/cn/vika/client/api/model/field/property Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,4 +8,11 @@ public class CheckboxFieldProperty extends BaseFieldProperty {
88
99 private String icon ;
1010
11+ public String getIcon () {
12+ return icon ;
13+ }
14+
15+ public void setIcon (String icon ) {
16+ this .icon = icon ;
17+ }
1118}
Original file line number Diff line number Diff line change @@ -9,4 +9,19 @@ public class RatingFieldProperty extends BaseFieldProperty {
99
1010 private int max ;
1111
12+ public String getIcon () {
13+ return icon ;
14+ }
15+
16+ public void setIcon (String icon ) {
17+ this .icon = icon ;
18+ }
19+
20+ public int getMax () {
21+ return max ;
22+ }
23+
24+ public void setMax (int max ) {
25+ this .max = max ;
26+ }
1227}
Original file line number Diff line number Diff line change @@ -11,4 +11,27 @@ public class SelectOption {
1111
1212 private SelectOptionColor color ;
1313
14+ public String getId () {
15+ return id ;
16+ }
17+
18+ public void setId (String id ) {
19+ this .id = id ;
20+ }
21+
22+ public String getName () {
23+ return name ;
24+ }
25+
26+ public void setName (String name ) {
27+ this .name = name ;
28+ }
29+
30+ public SelectOptionColor getColor () {
31+ return color ;
32+ }
33+
34+ public void setColor (SelectOptionColor color ) {
35+ this .color = color ;
36+ }
1437}
Original file line number Diff line number Diff line change @@ -11,4 +11,27 @@ public class UserOption {
1111
1212 private String avatar ;
1313
14+ public String getId () {
15+ return id ;
16+ }
17+
18+ public void setId (String id ) {
19+ this .id = id ;
20+ }
21+
22+ public String getName () {
23+ return name ;
24+ }
25+
26+ public void setName (String name ) {
27+ this .name = name ;
28+ }
29+
30+ public String getAvatar () {
31+ return avatar ;
32+ }
33+
34+ public void setAvatar (String avatar ) {
35+ this .avatar = avatar ;
36+ }
1437}
You can’t perform that action at this time.
0 commit comments