Commit 583dc360 by Huang Linyu

添加订单详情供应商bean

parent ef8231e6
package com.ctrip.fun.common.vo.order;
/**
* 订单供应商bean
* @author lyhuang
*
*/
public class OrderItemSupplierBean {
private Integer orderItemId;
private Integer orderId;
private Integer supplierId;
private String supplierName;
public Integer getOrderItemId() {
return orderItemId;
}
public Integer getOrderId() {
return orderId;
}
public Integer getSupplierId() {
return supplierId;
}
public String getSupplierName() {
return supplierName;
}
public void setOrderItemId(Integer orderItemId) {
this.orderItemId = orderItemId;
}
public void setOrderId(Integer orderId) {
this.orderId = orderId;
}
public void setSupplierId(Integer supplierId) {
this.supplierId = supplierId;
}
public void setSupplierName(String supplierName) {
this.supplierName = supplierName;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment