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
| package com.sinata.rest.modular.auth.model;
|
| import lombok.Data;
|
| /**
| * 登录账号数据
| *
| * @author goku
| * @date 2023/3/6
| */
| @Data
| public class AccountVo {
|
| private Integer id;
|
| private Integer isLock;
|
| public AccountVo() {
| }
|
| public AccountVo(Integer id) {
| this.id = id;
| }
|
| public AccountVo(Integer id, Integer isLock) {
| this.id = id;
| this.isLock = isLock;
| }
| }
|
|