?? customerordervo.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 + -