CustomerAttributeEntity.java
Home
/
sm-shop /
src /
main /
java /
com /
salesmanager /
web /
entity /
customer /
attribute /
CustomerAttributeEntity.java
package com.salesmanager.web.entity.customer.attribute;
import java.io.Serializable;
public class CustomerAttributeEntity extends CustomerAttribute implements
Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private String textValue;
public void setTextValue(String textValue) {
this.textValue = textValue;
}
public String getTextValue() {
return textValue;
}
}