40 lines
776 B
Java
40 lines
776 B
Java
package aiyh.utils.entity;
|
|
|
|
/**
|
|
* @author EBU7-dev1-ayh
|
|
* create 2021/12/13 0013 11:19
|
|
*/
|
|
|
|
|
|
public class LabelHtmlIndex {
|
|
private Integer labelIndex;
|
|
private String defaultStr;
|
|
|
|
public LabelHtmlIndex() {
|
|
|
|
}
|
|
|
|
public LabelHtmlIndex(Integer labelIndex, String defaultStr) {
|
|
this.labelIndex = labelIndex;
|
|
this.defaultStr = defaultStr;
|
|
}
|
|
|
|
public Integer getLabelIndex() {
|
|
return labelIndex;
|
|
}
|
|
|
|
|
|
public String getDefaultStr() {
|
|
return defaultStr;
|
|
}
|
|
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "LabelHtmlIndex{" +
|
|
"labelIndex='" + labelIndex + '\'' +
|
|
", defaultStr='" + defaultStr + '\'' +
|
|
'}';
|
|
}
|
|
}
|