package com.bgy.autosale.payutil; import java.io.Serializable; /** * @author whw * @time 2019/4/9 * @Description 要上传价格数据 */ public class OrderPriceBean implements Serializable { private String clientId; private String codePrice; private String productName; private String productNo; private String rmbPrice; private boolean sellStatus; private String showType; public OrderPriceBean(String clientId, String codePrice, String productName, String productNo, String rmbPrice, boolean sellStatus) { this.clientId = clientId; this.codePrice = codePrice; this.productName = productName; this.productNo = productNo; this.rmbPrice = rmbPrice; this.sellStatus = sellStatus; } public OrderPriceBean(String clientId, String codePrice, String productName, String rmbPrice, boolean sellStatus, String showType) { this.clientId = clientId; this.codePrice = codePrice; this.productName = productName; this.rmbPrice = rmbPrice; this.sellStatus = sellStatus; this.showType = showType; } @Override public String toString() { return "OrderPriceBean{" + "clientId='" + clientId + '\'' + ", codePrice='" + codePrice + '\'' + ", productName='" + productName + '\'' + ", productNo='" + productNo + '\'' + ", rmbPrice='" + rmbPrice + '\'' + ", sellStatus=" + sellStatus + ", showType='" + showType + '\'' + '}'; } }