KKSU
2024-08-22 7a372033d44ba48383d9d1bc97e5d583b26a266f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cc.mrbird.febs.mall.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("mall_member_withdraw_msg")
public class MallMemberWithdrawMsg extends BaseEntity {
 
    /**
     * 提现记录ID
     */
    private Long withdrawId;
    /**
     * 提现记录编号
     */
    private String withdrawNo;
    /**
     * 状态 1:已查询 2:未查询
     */
    private Integer status;
}