xiaoyong931011
2022-09-23 396f0b6e1a42799eabee1b13aa6a9d7ea3356520
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;
}