BaseLineBean.java
861 Bytes
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
/*
* Copyright (c) Wondertek Technologies Co., Ltd. 2021-2022. All rights reserved.
*/
package com.wd.foundation.bean.custom;
import com.wd.foundation.bean.custom.item.ItemBean;
/**
* 底线数据bean
*
* @author zhangbo
* @version [V1.0.0, 2021/4/14]
* @since V1.0.0
*/
public class BaseLineBean extends ItemBean {
private boolean show;
private String lineHint;
private String textColor;
public boolean isShow() {
return show;
}
public void setShow(boolean show) {
this.show = show;
}
public String getLineHint() {
return lineHint;
}
public void setLineHint(String lineHint) {
this.lineHint = lineHint;
}
public String getTextColor() {
return textColor;
}
public void setTextColor(String textColor) {
this.textColor = textColor;
}
}