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.
32 lines
525 B
Java
32 lines
525 B
Java
package com.rehome.dywoa.DBModel;
|
|
|
|
|
|
import org.litepal.crud.DataSupport;
|
|
|
|
/**
|
|
* Created by HuangWenfei on 2024/9/4.
|
|
* 巡检终合统计专业下拉数据
|
|
*/
|
|
|
|
public class ZyXjTjDropDown 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;
|
|
}
|
|
}
|