You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
663 B
42 lines
663 B
package com.platform.entities;
|
|
|
|
/**
|
|
*
|
|
* 编码信息实体
|
|
* 行政区划/系统信息
|
|
* @author wuming
|
|
*
|
|
*/
|
|
public class EncodedInfoEntity {
|
|
private String name; //名称
|
|
private String code; //编码
|
|
|
|
public EncodedInfoEntity() {}
|
|
|
|
public EncodedInfoEntity(String name, String code) {
|
|
this.name = name;
|
|
this.code = code;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getCode() {
|
|
return code;
|
|
}
|
|
|
|
public void setCode(String code) {
|
|
this.code = code;
|
|
}
|
|
|
|
@Override
|
|
public String toString(){
|
|
return "code=" + this.code + ", name=" + this.name;
|
|
}
|
|
}
|