1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.fastbee.common.core.domain.model;
|
| /**
| * 用户登录对象
| *
| * @author ruoyi
| */
| public class BindLoginBody extends LoginBody
| {
| /**
| * 绑定id
| */
| private String bindId;
|
| public String getBindId() {
| return bindId;
| }
|
| public void setBindId(String bindId) {
| this.bindId = bindId;
| }
| }
|
|