AttributeValue.java 1.53 KB
package com.dili.titan.domain;

/**
 * attributeValue
 * 
 * @author dev-center
 * @since 2014-05-10
 */
public class AttributeValue extends BaseQuery {
	private static final long serialVersionUID = 1L;
	private Long valueId;
	private Long attrId;
	private String value;
	private Integer order;
	private Integer show;
	private Integer status;

	public AttributeValue() {
		// 默认无参构造方法
	}

	/**
	 * 获取 attrId
	 * 
	 * @return
	 */
	public Long getAttrId() {
		return attrId;
	}

	/**
	 * 设置 attrId
	 * 
	 * @param attrId
	 */
	public void setAttrId(Long attrId) {
		this.attrId = attrId;
	}

	/**
	 * 获取 value
	 * 
	 * @return
	 */
	public String getValue() {
		return value;
	}

	/**
	 * 设置 value
	 * 
	 * @param value
	 */
	public void setValue(String value) {
		this.value = value;
	}

	/**
	 * 获取 order
	 * 
	 * @return
	 */
	public Integer getOrder() {
		return order;
	}

	/**
	 * 设置 order
	 * 
	 * @param order
	 */
	public void setOrder(Integer order) {
		this.order = order;
	}

	/**
	 * 获取 show
	 * 
	 * @return
	 */
	public Integer getShow() {
		return show;
	}

	/**
	 * 设置 show
	 * 
	 * @param show
	 */
	public void setShow(Integer show) {
		this.show = show;
	}

	/**
	 * 获取 status
	 * 
	 * @return
	 */
	public Integer getStatus() {
		return status;
	}

	/**
	 * 设置 status
	 * 
	 * @param status
	 */
	public void setStatus(Integer status) {
		this.status = status;
	}

	public Long getValueId() {
		return valueId;
	}

	public void setValueId(Long valueId) {
		this.valueId = valueId;
	}

}