package cc.mrbird.febs.mall.entity;
|
|
import cc.mrbird.febs.common.entity.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
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 wtihdrawTypeId;
|
|
private Long memberId;
|
|
private BigDecimal amount;
|
|
/**
|
* 状态 1-提现中 2-提现成功 3-提现失败
|
*/
|
private Integer status;
|
|
private BigDecimal amountFee;
|
|
private String name;
|
|
private String withdrawNo;
|
|
private String remark;
|
/**
|
* 绿色凭证
|
*/
|
@TableField(exist = false)
|
private String agreeType;
|
|
@TableField(exist = false)
|
private String amountReal;
|
|
@TableField(exist = false)
|
private String accountLogin;
|
}
|