| | |
| | | package com.yeshi.fanli.vo.goods;
|
| | |
|
| | | public class MoneyInfoVO {
|
| | | import java.io.Serializable;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | public class MoneyInfoVO implements Serializable{
|
| | | /**
|
| | | * |
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | | @Expose
|
| | | private String fanliMoney;// 返利金额
|
| | | @Expose
|
| | | private int moneyType;// 资金类型
|
| | | @Expose
|
| | | private String shareMoney;// 分享奖金
|
| | | @Expose
|
| | | private String maxMoney;// 最高返回
|
| | |
|
| | | public String getFanliMoney() {
|
| | | return fanliMoney;
|
| | |
| | | public void setShareMoney(String shareMoney) {
|
| | | this.shareMoney = shareMoney;
|
| | | }
|
| | |
|
| | | public String getMaxMoney() {
|
| | | return maxMoney;
|
| | | }
|
| | |
|
| | | public void setMaxMoney(String maxMoney) {
|
| | | this.maxMoney = maxMoney;
|
| | | }
|
| | | |
| | | }
|