WatermarkBean.java
3.83 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package com.wd.foundation.bean.live;
import android.text.TextUtils;
import com.wd.foundation.bean.base.BaseBean;
/**
* 问政-留言详情
* 主态 客态
* @author wd
* @version [V1.0.0, 2023/9/14]
* @since V1.0.0
*/
public class WatermarkBean extends BaseBean {
// public String imageUrl;// string非必须 水印图url
// public String corner;// string非必须 位置:TopRight,TopLeft
// public String streamLogoSwitch;// string非必须 是否开启客户端水印,true,false
// public String appXOffset;// string非必须 app端X轴偏移量
// public String appYOffset;// string非必须 app端Y轴偏移量
// public String appContainerH;// string非必须 容器高
// public String appScreenRatio;// string非必须 全屏比例
// public String h5XOffset;// string非必须h5 X轴
// public String h5YOffset;// string非必须h5 Y轴
// public String h5Container;// string非必须H5 容器高
// public String h5ScreenRatio;// string非必须 h5全屏比例
private String appContainerH;
private String appScreenRatio;
private String appXOffset;
private String appYOffset;
private String corner;
private String h5ContainerH;
private String h5ScreenRatio;
private String h5XOffset;
private String h5YOffset;
private String hVScreen;
private int id;
private String imageUrl;
private boolean streamLogoSwitch;
private int tenancy;
public String getAppContainerH() {
return TextUtils.isEmpty(appContainerH)?"0":appContainerH;
}
public void setAppContainerH(String appContainerH) {
this.appContainerH = appContainerH;
}
public String getAppScreenRatio() {
return TextUtils.isEmpty(appScreenRatio)?"1":appScreenRatio;
}
public void setAppScreenRatio(String appScreenRatio) {
this.appScreenRatio = appScreenRatio;
}
public String getAppXOffset() {
return TextUtils.isEmpty(appXOffset)?"0":appXOffset;
}
public void setAppXOffset(String appXOffset) {
this.appXOffset = appXOffset;
}
public String getAppYOffset() {
return TextUtils.isEmpty(appYOffset)?"0":appYOffset;
}
public void setAppYOffset(String appYOffset) {
this.appYOffset = appYOffset;
}
public String getCorner() {
return TextUtils.isEmpty(corner)?"0":corner;
}
public void setCorner(String corner) {
this.corner = corner;
}
public String getH5ContainerH() {
return h5ContainerH;
}
public void setH5ContainerH(String h5ContainerH) {
this.h5ContainerH = h5ContainerH;
}
public String getH5ScreenRatio() {
return h5ScreenRatio;
}
public void setH5ScreenRatio(String h5ScreenRatio) {
this.h5ScreenRatio = h5ScreenRatio;
}
public String getH5XOffset() {
return h5XOffset;
}
public void setH5XOffset(String h5XOffset) {
this.h5XOffset = h5XOffset;
}
public String getH5YOffset() {
return h5YOffset;
}
public void setH5YOffset(String h5YOffset) {
this.h5YOffset = h5YOffset;
}
public String getHVScreen() {
return hVScreen;
}
public void setHVScreen(String hVScreen) {
this.hVScreen = hVScreen;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
public boolean isStreamLogoSwitch() {
return streamLogoSwitch;
}
public void setStreamLogoSwitch(boolean streamLogoSwitch) {
this.streamLogoSwitch = streamLogoSwitch;
}
public int getTenancy() {
return tenancy;
}
public void setTenancy(int tenancy) {
this.tenancy = tenancy;
}
}