package com.edufound.reader.bean; public class PayResultBean { private String addDays; private String channel; private String firstPrice; private String gmtCreated; private String gmtModified; private String id; private String originPrice; private String price; private String status; private String title; private String payType; private String productId; private String orderId; private String thirdPartOrderId; public String getProductId() { return productId; } public void setProductId(String productId) { this.productId = productId; } public String getOrderId() { return orderId; } public void setOrderId(String orderId) { this.orderId = orderId; } public String getThirdPartOrderId() { return thirdPartOrderId; } public void setThirdPartOrderId(String thirdPartOrderId) { this.thirdPartOrderId = thirdPartOrderId; } public String getPayType() { return payType; } public void setPayType(String payType) { this.payType = payType; } public void setAddDays(String addDays) { this.addDays = addDays; } public String getAddDays() { return this.addDays; } public void setChannel(String channel) { this.channel = channel; } public String getChannel() { return this.channel; } public void setFirstPrice(String firstPrice) { this.firstPrice = firstPrice; } public String getFirstPrice() { return this.firstPrice; } public void setGmtCreated(String gmtCreated) { this.gmtCreated = gmtCreated; } public String getGmtCreated() { return this.gmtCreated; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public String getGmtModified() { return this.gmtModified; } public void setId(String id) { this.id = id; } public String getId() { return this.id; } public void setOriginPrice(String originPrice) { this.originPrice = originPrice; } public String getOriginPrice() { return this.originPrice; } public void setPrice(String price) { this.price = price; } public String getPrice() { return this.price; } public void setStatus(String status) { this.status = status; } public String getStatus() { return this.status; } public void setTitle(String title) { this.title = title; } public String getTitle() { return this.title; } }