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.
29 lines
501 B
Java
29 lines
501 B
Java
package com.rehome.dywoa.DBModel;
|
|
|
|
import org.litepal.crud.DataSupport;
|
|
|
|
/**
|
|
* Created by HuangWenfei on 2024/6/3.
|
|
* 缺隐工单响应等级
|
|
*/
|
|
public class Xydj 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;
|
|
}
|
|
}
|