22 lines
413 B
Java
22 lines
413 B
Java
package com.xscm.moduleutil.bean;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
*@author qx
|
|
*@data 2025/7/12
|
|
*@description: 提现记录实体
|
|
*/
|
|
@Data
|
|
public class WithdrawalBean {
|
|
private String name;
|
|
private String money;
|
|
private int status;
|
|
private String status_str;
|
|
private String createtime;
|
|
private String withdraw_fee;
|
|
private String surplus_money;
|
|
private String received_tax_amount;
|
|
|
|
}
|