CustomerOptionValueEntity.java

28 lines | 528 B Blame History Raw Download
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;
	}

}