/* * Copyright 2015 The Skfiy Open Association. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.skfiy.typhon.rnsd.domain; import com.alibaba.fastjson.JSON; /** * * @author Kevin Zou <kevinz@skfiy.org> */ public class Recharging { private String tradeId; private String platform; private String uid; private String region; private String goods; private int amount; private long creationTime; private String status; private String channel; public String getTradeId() { return tradeId; } public void setTradeId(String tradeId) { this.tradeId = tradeId; } public String getPlatform() { return platform; } public void setPlatform(String platform) { this.platform = platform; } public String getUid() { return uid; } public void setUid(String uid) { this.uid = uid; } public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public String getGoods() { return goods; } public void setGoods(String goods) { this.goods = goods; } public int getAmount() { return amount; } public void setAmount(int amount) { this.amount = amount; } public long getCreationTime() { return creationTime; } public void setCreationTime(long creationTime) { this.creationTime = creationTime; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public String getChannel() { return channel; } public void setChannel(String channel) { this.channel = channel; } @Override public String toString() { return JSON.toJSONString(this); } }