CustomerOptionValueEntity.java
Home
/
sm-shop /
src /
main /
java /
com /
salesmanager /
web /
entity /
customer /
attribute /
CustomerOptionValueEntity.java
package com.salesmanager.web.entity.customer.attribute;
import java.io.Serializable;
public class CustomerOptionValueEntity extends CustomerOptionValue implements
Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private int order;
private String code;
public void setOrder(int order) {
this.order = order;
}
public int getOrder() {
return order;
}
public void setCode(String code) {
this.code = code;
}
public String getCode() {
return code;
}
}