package com.ectrip.cyt.request; /** * This is 消费_产品信息 * * @author Jiehao Ling, 4:55 PM,9/6/16 */ public class ProductOfConsumeOrder { private String productId;// 原始产品ID private Integer consumedQuantity;// 消费数量 public ProductOfConsumeOrder() { } public ProductOfConsumeOrder(String productId, Integer consumedQuantity) { this.productId = productId; this.consumedQuantity = consumedQuantity; } public String getProductId() { return productId; } public void setProductId(String productId) { this.productId = productId; } public Integer getConsumedQuantity() { return consumedQuantity; } public void setConsumedQuantity(Integer consumedQuantity) { this.consumedQuantity = consumedQuantity; } }