admin
2023-11-01 50fe2303fef148de18d39f90a8653feda1b21c05
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.common.core.domain.model;
 
/**
 * 用户注册对象
 *
 * @author ruoyi
 */
public class BindRegisterBody extends RegisterBody {
    /**
     * 绑定id
     */
    private String bindId;
 
    public String getBindId() {
        return bindId;
    }
 
    public void setBindId(String bindId) {
        this.bindId = bindId;
    }
 
}