|
|
@@ -0,0 +1,108 @@
|
|
|
+package com.goafanti.order.bo;
|
|
|
+
|
|
|
+public class OrderDetailBo {
|
|
|
+ /** 订单编号 **/
|
|
|
+ private String orderNo;
|
|
|
+ /** 商品id **/
|
|
|
+ private String commodityId;
|
|
|
+ /** 商品名称 **/
|
|
|
+ private String commodityName;
|
|
|
+ /** 商品单价 **/
|
|
|
+ private String commodityPrice;
|
|
|
+ /** 商品数量 **/
|
|
|
+ private Integer commodityQuantity;
|
|
|
+ /** 商品型号 **/
|
|
|
+ private String commodityMode;
|
|
|
+ /** 首付金 **/
|
|
|
+ private String firstPayment;
|
|
|
+ /** 订单类型 **/
|
|
|
+ private Integer orderType;
|
|
|
+ /** 订单创建时间 **/
|
|
|
+ private String createTime;
|
|
|
+ /** 订单金额 **/
|
|
|
+ private String orderAmount;
|
|
|
+ /** 订单留言 **/
|
|
|
+ private String orderRemarks;
|
|
|
+ /** 技术类型 **/
|
|
|
+ private Integer technologyType;
|
|
|
+ /** 交意方式 **/
|
|
|
+ private Integer transferMode;
|
|
|
+ public String getOrderNo() {
|
|
|
+ return orderNo;
|
|
|
+ }
|
|
|
+ public void setOrderNo(String orderNo) {
|
|
|
+ this.orderNo = orderNo;
|
|
|
+ }
|
|
|
+ public String getCommodityId() {
|
|
|
+ return commodityId;
|
|
|
+ }
|
|
|
+ public void setCommodityId(String commodityId) {
|
|
|
+ this.commodityId = commodityId;
|
|
|
+ }
|
|
|
+ public String getCommodityName() {
|
|
|
+ return commodityName;
|
|
|
+ }
|
|
|
+ public void setCommodityName(String commodityName) {
|
|
|
+ this.commodityName = commodityName;
|
|
|
+ }
|
|
|
+ public String getCommodityPrice() {
|
|
|
+ return commodityPrice;
|
|
|
+ }
|
|
|
+ public void setCommodityPrice(String commodityPrice) {
|
|
|
+ this.commodityPrice = commodityPrice;
|
|
|
+ }
|
|
|
+ public Integer getCommodityQuantity() {
|
|
|
+ return commodityQuantity;
|
|
|
+ }
|
|
|
+ public void setCommodityQuantity(Integer commodityQuantity) {
|
|
|
+ this.commodityQuantity = commodityQuantity;
|
|
|
+ }
|
|
|
+ public String getCommodityMode() {
|
|
|
+ return commodityMode;
|
|
|
+ }
|
|
|
+ public void setCommodityMode(String commodityMode) {
|
|
|
+ this.commodityMode = commodityMode;
|
|
|
+ }
|
|
|
+ public String getFirstPayment() {
|
|
|
+ return firstPayment;
|
|
|
+ }
|
|
|
+ public void setFirstPayment(String firstPayment) {
|
|
|
+ this.firstPayment = firstPayment;
|
|
|
+ }
|
|
|
+ public Integer getOrderType() {
|
|
|
+ return orderType;
|
|
|
+ }
|
|
|
+ public void setOrderType(Integer orderType) {
|
|
|
+ this.orderType = orderType;
|
|
|
+ }
|
|
|
+ public String getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+ public void setCreateTime(String createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+ public String getOrderAmount() {
|
|
|
+ return orderAmount;
|
|
|
+ }
|
|
|
+ public void setOrderAmount(String orderAmount) {
|
|
|
+ this.orderAmount = orderAmount;
|
|
|
+ }
|
|
|
+ public String getOrderRemarks() {
|
|
|
+ return orderRemarks;
|
|
|
+ }
|
|
|
+ public void setOrderRemarks(String orderRemarks) {
|
|
|
+ this.orderRemarks = orderRemarks;
|
|
|
+ }
|
|
|
+ public Integer getTechnologyType() {
|
|
|
+ return technologyType;
|
|
|
+ }
|
|
|
+ public void setTechnologyType(Integer technologyType) {
|
|
|
+ this.technologyType = technologyType;
|
|
|
+ }
|
|
|
+ public Integer getTransferMode() {
|
|
|
+ return transferMode;
|
|
|
+ }
|
|
|
+ public void setTransferMode(Integer transferMode) {
|
|
|
+ this.transferMode = transferMode;
|
|
|
+ }
|
|
|
+}
|