⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 customerordervo.java

📁 基于Sturts+Spring+Hibernate的一个高级销售管理系统。内容丰富
💻 JAVA
字号:
package com.yuanchung.sales.vo.order;

import java.util.Date;

import com.yuanchung.sales.model.customer.Customer;
import com.yuanchung.sales.model.customer.CustomerContact;
import com.yuanchung.sales.model.user.User;
import com.yuanchung.sales.model.order.Order;

public class CustomerOrderVo implements java.io.Serializable
{
	// Fields
	
	private Integer orderId;//订单号
	private String orderDate;//订单日期
	private Integer orderStatus;//审核状态
	private User user;//用户
	private Customer customer;//客户
	private CustomerContact customercontact;//联系人
	private Date deliveryDate;//交货日期
	private String deliveryAddress;//送货地址
	private double orderDiscount;//整单折扣
	private double totalAmount;//合计金额
	private String productName;//产品名称
	private Integer productId;//产品编号
	private String productUnit;//单位
	private Integer productAmount;//数量
	private double productPrice;//单价
	private double productDiscountRate;//折扣率
	private double productTaxRate;//税率
	private double productTaxAmount;//税额
	private double productTotalAmount;//合计价格
	private String departmentName;//部门名称
	
	private Integer id;		
	private String customerName;
	private String legalRepresent;
	private String bizType;
	private long registerCapital;
	private String industryOf;
	private Integer employeeMinNum;
	private Integer employeeMaxNum;
	private String regionOf;
	private String communAddr;
	private String phone;
	private String fax;
	private String zipCode;
	private String webSite;
	private String email;
	private String honestGrade;
	private String managerLevel;
	private String breedVisualize;
	private String customerState;
	private String customerSource;
	private String remark;
	private String createTime;
	private String employeeNum;
	private String province;
	private String city;
	private String county;
	private Integer flag;
	private String inDate;
	private String lastModifyTime;
	private Integer modifyManId;
	private String modifyName;
	private String industryType;
	public Integer getOrderId() {
		return orderId;
	}
	public void setOrderId(Integer orderId) {
		this.orderId = orderId;
	}
	public String getOrderDate() {
		return orderDate;
	}
	public void setOrderDate(String orderDate) {
		this.orderDate = orderDate;
	}
	public Integer getOrderStatus() {
		return orderStatus;
	}
	public void setOrderStatus(Integer orderStatus) {
		this.orderStatus = orderStatus;
	}
	public User getUser() {
		return user;
	}
	public void setUser(User user) {
		this.user = user;
	}
	public Customer getCustomer() {
		return customer;
	}
	public void setCustomer(Customer customer) {
		this.customer = customer;
	}
	public CustomerContact getCustomercontact() {
		return customercontact;
	}
	public void setCustomercontact(CustomerContact customercontact) {
		this.customercontact = customercontact;
	}
	public Date getDeliveryDate() {
		return deliveryDate;
	}
	public void setDeliveryDate(Date deliveryDate) {
		this.deliveryDate = deliveryDate;
	}
	public String getDeliveryAddress() {
		return deliveryAddress;
	}
	public void setDeliveryAddress(String deliveryAddress) {
		this.deliveryAddress = deliveryAddress;
	}
	public double getOrderDiscount() {
		return orderDiscount;
	}
	public void setOrderDiscount(double orderDiscount) {
		this.orderDiscount = orderDiscount;
	}
	public double getTotalAmount() {
		return totalAmount;
	}
	public void setTotalAmount(double totalAmount) {
		this.totalAmount = totalAmount;
	}
	public String getProductName() {
		return productName;
	}
	public void setProductName(String productName) {
		this.productName = productName;
	}
	public Integer getProductId() {
		return productId;
	}
	public void setProductId(Integer productId) {
		this.productId = productId;
	}
	public String getProductUnit() {
		return productUnit;
	}
	public void setProductUnit(String productUnit) {
		this.productUnit = productUnit;
	}
	public Integer getProductAmount() {
		return productAmount;
	}
	public void setProductAmount(Integer productAmount) {
		this.productAmount = productAmount;
	}
	public double getProductPrice() {
		return productPrice;
	}
	public void setProductPrice(double productPrice) {
		this.productPrice = productPrice;
	}
	public double getProductDiscountRate() {
		return productDiscountRate;
	}
	public void setProductDiscountRate(double productDiscountRate) {
		this.productDiscountRate = productDiscountRate;
	}
	public double getProductTaxRate() {
		return productTaxRate;
	}
	public void setProductTaxRate(double productTaxRate) {
		this.productTaxRate = productTaxRate;
	}
	public double getProductTaxAmount() {
		return productTaxAmount;
	}
	public void setProductTaxAmount(double productTaxAmount) {
		this.productTaxAmount = productTaxAmount;
	}
	public double getProductTotalAmount() {
		return productTotalAmount;
	}
	public void setProductTotalAmount(double productTotalAmount) {
		this.productTotalAmount = productTotalAmount;
	}
	public String getDepartmentName() {
		return departmentName;
	}
	public void setDepartmentName(String departmentName) {
		this.departmentName = departmentName;
	}
	public Integer getId() {
		return id;
	}
	public void setId(Integer id) {
		this.id = id;
	}
	public String getCustomerName() {
		return customerName;
	}
	public void setCustomerName(String customerName) {
		this.customerName = customerName;
	}
	public String getLegalRepresent() {
		return legalRepresent;
	}
	public void setLegalRepresent(String legalRepresent) {
		this.legalRepresent = legalRepresent;
	}
	public String getBizType() {
		return bizType;
	}
	public void setBizType(String bizType) {
		this.bizType = bizType;
	}
	public long getRegisterCapital() {
		return registerCapital;
	}
	public void setRegisterCapital(long registerCapital) {
		this.registerCapital = registerCapital;
	}
	public String getIndustryOf() {
		return industryOf;
	}
	public void setIndustryOf(String industryOf) {
		this.industryOf = industryOf;
	}
	public Integer getEmployeeMinNum() {
		return employeeMinNum;
	}
	public void setEmployeeMinNum(Integer employeeMinNum) {
		this.employeeMinNum = employeeMinNum;
	}
	public Integer getEmployeeMaxNum() {
		return employeeMaxNum;
	}
	public void setEmployeeMaxNum(Integer employeeMaxNum) {
		this.employeeMaxNum = employeeMaxNum;
	}
	public String getRegionOf() {
		return regionOf;
	}
	public void setRegionOf(String regionOf) {
		this.regionOf = regionOf;
	}
	public String getCommunAddr() {
		return communAddr;
	}
	public void setCommunAddr(String communAddr) {
		this.communAddr = communAddr;
	}
	public String getPhone() {
		return phone;
	}
	public void setPhone(String phone) {
		this.phone = phone;
	}
	public String getFax() {
		return fax;
	}
	public void setFax(String fax) {
		this.fax = fax;
	}
	public String getZipCode() {
		return zipCode;
	}
	public void setZipCode(String zipCode) {
		this.zipCode = zipCode;
	}
	public String getWebSite() {
		return webSite;
	}
	public void setWebSite(String webSite) {
		this.webSite = webSite;
	}
	public String getEmail() {
		return email;
	}
	public void setEmail(String email) {
		this.email = email;
	}
	public String getHonestGrade() {
		return honestGrade;
	}
	public void setHonestGrade(String honestGrade) {
		this.honestGrade = honestGrade;
	}
	public String getManagerLevel() {
		return managerLevel;
	}
	public void setManagerLevel(String managerLevel) {
		this.managerLevel = managerLevel;
	}
	public String getBreedVisualize() {
		return breedVisualize;
	}
	public void setBreedVisualize(String breedVisualize) {
		this.breedVisualize = breedVisualize;
	}
	public String getCustomerState() {
		return customerState;
	}
	public void setCustomerState(String customerState) {
		this.customerState = customerState;
	}
	public String getCustomerSource() {
		return customerSource;
	}
	public void setCustomerSource(String customerSource) {
		this.customerSource = customerSource;
	}
	public String getRemark() {
		return remark;
	}
	public void setRemark(String remark) {
		this.remark = remark;
	}
	public String getCreateTime() {
		return createTime;
	}
	public void setCreateTime(String createTime) {
		this.createTime = createTime;
	}
	public String getEmployeeNum() {
		return employeeNum;
	}
	public void setEmployeeNum(String employeeNum) {
		this.employeeNum = employeeNum;
	}
	public String getProvince() {
		return province;
	}
	public void setProvince(String province) {
		this.province = province;
	}
	public String getCity() {
		return city;
	}
	public void setCity(String city) {
		this.city = city;
	}
	public String getCounty() {
		return county;
	}
	public void setCounty(String county) {
		this.county = county;
	}
	public Integer getFlag() {
		return flag;
	}
	public void setFlag(Integer flag) {
		this.flag = flag;
	}
	public String getInDate() {
		return inDate;
	}
	public void setInDate(String inDate) {
		this.inDate = inDate;
	}
	public String getLastModifyTime() {
		return lastModifyTime;
	}
	public void setLastModifyTime(String lastModifyTime) {
		this.lastModifyTime = lastModifyTime;
	}
	public Integer getModifyManId() {
		return modifyManId;
	}
	public void setModifyManId(Integer modifyManId) {
		this.modifyManId = modifyManId;
	}
	public String getModifyName() {
		return modifyName;
	}
	public void setModifyName(String modifyName) {
		this.modifyName = modifyName;
	}
	public String getIndustryType() {
		return industryType;
	}
	public void setIndustryType(String industryType) {
		this.industryType = industryType;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -