ProductInfoQuery.java 3.34 KB
package com.ectrip.cyt.response;

/**
 * This is
 *
 * @author Jiehao Ling, 5:28 PM,9/6/16
 */
public class ProductInfoQuery {
    private String productId;// 原始产品ID
    private String name;// 产品名称
    private String totalQuantity;// 总数量
    private String consumedQuantity;// 已消费数量
    private String quantity;// 订单剩余数量
    private String baseQuantity;// 基数
    private String startDate;// 开始日期(yyyy;//MM;//dd)
    private String endDate;// 截止日期(yyyy;//MM;//dd)
    private String price;// 单价
    private String money;// 金额
    private String paymentType;// 支付类型(预付、到付)
    private String pmsProductId;// 线下产品ID(窗口设备使用)

    public ProductInfoQuery() {
    }

    public ProductInfoQuery(String productId, String name, String totalQuantity, String consumedQuantity, String quantity, String baseQuantity, String startDate, String endDate, String price, String money, String paymentType, String pmsProductId) {
        this.productId = productId;
        this.name = name;
        this.totalQuantity = totalQuantity;
        this.consumedQuantity = consumedQuantity;
        this.quantity = quantity;
        this.baseQuantity = baseQuantity;
        this.startDate = startDate;
        this.endDate = endDate;
        this.price = price;
        this.money = money;
        this.paymentType = paymentType;
        this.pmsProductId = pmsProductId;
    }

    public String getProductId() {
        return productId;
    }

    public void setProductId(String productId) {
        this.productId = productId;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getTotalQuantity() {
        return totalQuantity;
    }

    public void setTotalQuantity(String totalQuantity) {
        this.totalQuantity = totalQuantity;
    }

    public String getConsumedQuantity() {
        return consumedQuantity;
    }

    public void setConsumedQuantity(String consumedQuantity) {
        this.consumedQuantity = consumedQuantity;
    }

    public String getQuantity() {
        return quantity;
    }

    public void setQuantity(String quantity) {
        this.quantity = quantity;
    }

    public String getBaseQuantity() {
        return baseQuantity;
    }

    public void setBaseQuantity(String baseQuantity) {
        this.baseQuantity = baseQuantity;
    }

    public String getStartDate() {
        return startDate;
    }

    public void setStartDate(String startDate) {
        this.startDate = startDate;
    }

    public String getEndDate() {
        return endDate;
    }

    public void setEndDate(String endDate) {
        this.endDate = endDate;
    }

    public String getPrice() {
        return price;
    }

    public void setPrice(String price) {
        this.price = price;
    }

    public String getMoney() {
        return money;
    }

    public void setMoney(String money) {
        this.money = money;
    }

    public String getPaymentType() {
        return paymentType;
    }

    public void setPaymentType(String paymentType) {
        this.paymentType = paymentType;
    }

    public String getPmsProductId() {
        return pmsProductId;
    }

    public void setPmsProductId(String pmsProductId) {
        this.pmsProductId = pmsProductId;
    }
}