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.
28 lines
457 B
28 lines
457 B
package com.fr.plugin.xx.gxkg.bean; |
|
|
|
import java.util.List; |
|
|
|
public class SchemaEntity { |
|
|
|
private String objectClass ; |
|
|
|
private List<AttributeEntity> attrs ; |
|
|
|
public String getObjectClass() { |
|
return objectClass; |
|
} |
|
|
|
public void setObjectClass(String objectClass) { |
|
this.objectClass = objectClass; |
|
} |
|
|
|
public List<AttributeEntity> getAttrs() { |
|
return attrs; |
|
} |
|
|
|
public void setAttrs(List<AttributeEntity> attrs) { |
|
this.attrs = attrs; |
|
} |
|
|
|
|
|
}
|
|
|