14 lines
337 B
Java
14 lines
337 B
Java
package wenrgise.common.bean;
|
|
|
|
public class BaseBean {
|
|
private CommonAttributes oCommonAttributes = null;
|
|
|
|
public CommonAttributes getOCommonAttributes() {
|
|
return this.oCommonAttributes;
|
|
}
|
|
|
|
public void setOCommonAttributes(CommonAttributes newOCommonAttributes) {
|
|
this.oCommonAttributes = newOCommonAttributes;
|
|
}
|
|
}
|