Commit 34cb0508 by libin

添加实体案件、报案人、被害人和字典吗的接口实体类。

parent 8288d6ac
package com.founder.model;
import java.io.Serializable;
public class SysDictView implements Serializable {
//字典码类型
private String codeType;
//字典码数值
private String codeValue;
//字典码名称
private String codeName;
public String getCodeType() {
return codeType;
}
public void setCodeType(String codeType) {
this.codeType = codeType;
}
public String getCodeValue() {
return codeValue;
}
public void setCodeValue(String codeValue) {
this.codeValue = codeValue;
}
public String getCodeName() {
return codeName;
}
public void setCodeName(String codeName) {
this.codeName = codeName;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment