|
@@ -63,4 +63,20 @@ public class Lis {
|
|
|
* 频次
|
|
|
*/
|
|
|
private String frequency;
|
|
|
+ /**
|
|
|
+ * 文本类型最小值
|
|
|
+ */
|
|
|
+ private String strMinValue;
|
|
|
+ /**
|
|
|
+ * 文本类型最大值
|
|
|
+ */
|
|
|
+ private String strMaxValue;
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name == null ? null : name.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDetailName(String detailName) {
|
|
|
+ this.detailName = detailName == null ? null : detailName.trim();
|
|
|
+ }
|
|
|
}
|