package cc.mrbird.febs.mall.entity;
|
|
import cc.mrbird.febs.common.entity.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @author wzy
|
* @date 2022-05-05
|
**/
|
@Data
|
@TableName("mall_member_withdraw")
|
public class MallMemberWithdraw extends BaseEntity {
|
|
private Long memberId;
|
|
private BigDecimal amount;
|
|
/**
|
* 状态 1-提现中 2-提现成功 3-提现失败
|
*/
|
private Integer status;
|
|
private BigDecimal amountFee;
|
|
private String name;
|
|
private String withdrawNo;
|
}
|