package com.landtool.lanbase.modules.res.entity;
|
|
public class Res_SymbolLibrary {
|
private Integer objectid;//主键
|
private String fhid;//符号ID
|
private String mc;//名称
|
private String symbol;//符号风格
|
private String geotype;//符号空间类型
|
|
public Integer getObjectid() {
|
return objectid;
|
}
|
|
public void setObjectid(Integer objectid) {
|
this.objectid = objectid;
|
}
|
|
public String getFhid() {
|
return fhid;
|
}
|
|
public void setFhid(String fhid) {
|
this.fhid = fhid;
|
}
|
|
public String getMc() {
|
return mc;
|
}
|
|
public void setMc(String mc) {
|
this.mc = mc;
|
}
|
|
public String getSymbol() {
|
return symbol;
|
}
|
|
public void setSymbol(String symbol) {
|
this.symbol = symbol;
|
}
|
|
public String getGeotype() {
|
return geotype;
|
}
|
|
public void setGeotype(String geotype) {
|
this.geotype = geotype;
|
}
|
}
|