123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- 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 productNo,String productName) {
- this.clientId = clientId;
- this.productNo = productNo;
- this.productName = productName;
- }
- 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 + '\'' +
- '}';
- }
- }
|