36 lines
612 B
Java
36 lines
612 B
Java
|
|
package com.xscm.moduleutil.bean;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*@author qx
|
||
|
|
*@data 2025/5/30
|
||
|
|
*@description: 礼物打赏数量
|
||
|
|
*/
|
||
|
|
public class GiftNumBean {
|
||
|
|
private String number;
|
||
|
|
private String text;
|
||
|
|
|
||
|
|
public GiftNumBean() {
|
||
|
|
}
|
||
|
|
|
||
|
|
public GiftNumBean(String number, String text) {
|
||
|
|
this.number = number;
|
||
|
|
this.text = text;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getNumber() {
|
||
|
|
return number;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setNumber(String number) {
|
||
|
|
this.number = number;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getText() {
|
||
|
|
return text;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setText(String text) {
|
||
|
|
this.text = text;
|
||
|
|
}
|
||
|
|
}
|