You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
524 B
Java

package com.rehome.dywoa.DBModel;
import org.litepal.crud.DataSupport;
/**
* Created by HuangWenfei on 2024/9/4.
* 巡检终合统计值次下拉数据
*/
public class ZcXjTjDropDown extends DataSupport {
private String key;
private String value;
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}