66 lines
1.4 KiB
Java
66 lines
1.4 KiB
Java
package com.shayu.onetoone.bean;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import com.yunbao.common.bean.BaseModel;
|
|
|
|
public class MessageConsumeConfigBean extends BaseModel {
|
|
@SerializedName("vodiePrice")
|
|
private int videoPrice;//视频扣费金额
|
|
private int mp3Price;//音频扣费金额
|
|
private int price;//消息扣费金额
|
|
private int pingTime;//心跳时间,单位秒
|
|
private int matePrice;//匹配金額
|
|
private int mateTime;//匹配時間
|
|
|
|
public MessageConsumeConfigBean() {
|
|
}
|
|
|
|
public int getVideoPrice() {
|
|
return videoPrice;
|
|
}
|
|
|
|
public void setVideoPrice(int videoPrice) {
|
|
this.videoPrice = videoPrice;
|
|
}
|
|
|
|
public int getMp3Price() {
|
|
return mp3Price;
|
|
}
|
|
|
|
public void setMp3Price(int mp3Price) {
|
|
this.mp3Price = mp3Price;
|
|
}
|
|
|
|
public int getPrice() {
|
|
return price;
|
|
}
|
|
|
|
public void setPrice(int price) {
|
|
this.price = price;
|
|
}
|
|
|
|
public int getPingTime() {
|
|
return pingTime;
|
|
}
|
|
|
|
public void setPingTime(int pingTime) {
|
|
this.pingTime = pingTime;
|
|
}
|
|
|
|
public int getMatePrice() {
|
|
return matePrice;
|
|
}
|
|
|
|
public void setMatePrice(int matePrice) {
|
|
this.matePrice = matePrice;
|
|
}
|
|
|
|
public int getMateTime() {
|
|
return mateTime;
|
|
}
|
|
|
|
public void setMateTime(int mateTime) {
|
|
this.mateTime = mateTime;
|
|
}
|
|
}
|