OrderTotal.java

52 lines | 1002 B Blame History Raw Download
package com.salesmanager.web.entity.order;

import java.io.Serializable;
import java.math.BigDecimal;

import com.salesmanager.web.entity.Entity;

public class OrderTotal extends Entity implements Serializable {
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private String title;
	private String code;
	private int order;
	private String module;
	private BigDecimal value;
	public String getTitle() {
		return title;
	}
	public void setTitle(String title) {
		this.title = title;
	}
	public String getCode() {
		return code;
	}
	public void setCode(String code) {
		this.code = code;
	}
	public int getOrder() {
		return order;
	}
	public void setOrder(int order) {
		this.order = order;
	}
	public String getModule() {
		return module;
	}
	public void setModule(String module) {
		this.module = module;
	}
	public BigDecimal getValue() {
		return value;
	}
	public void setValue(BigDecimal value) {
		this.value = value;
	}


}