Commit 08570775 by 雷紫添

Merge remote-tracking branch 'remotes/origin/master'

parents ac0cbf26 34cb0508
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