KKSU
2024-09-10 f52cfc92db48d9a215d7f728ce4000de1cdd6ae2
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;
}