123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*
- * Created on 2006-6-13 Administrator
- */
- package com.sysmodel.datamodel.xmlmodel;
- import java.io.Serializable;
- public class PropertyValue implements Serializable{
- /**
- *
- */
- private static final long serialVersionUID = 1L;
- private String propertyName; // 属性名称
- private Object propertyValue; // 属性值
- private String dataType;
- private boolean unique; // 是否唯一
- public String getDataType() {
- return dataType;
- }
- public void setDataType(String dataType) {
- this.dataType = dataType;
- }
- public String getPropertyName() {
- return propertyName;
- }
- public void setPropertyName(String propertyName) {
- this.propertyName = propertyName;
- }
- public Object getPropertyValue() {
- return propertyValue;
- }
- public void setPropertyValue(Object propertyValue) {
- this.propertyValue = propertyValue;
- }
- public boolean isUnique() {
- return unique;
- }
- public void setUnique(boolean unique) {
- this.unique = unique;
- }
- }
|