cjl
2023-06-29 2dc7a6b9623b3f04564e16e03c5c1778f0e2c8ee
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
package com.moral.api.pojo.dto.user;
 
import com.moral.api.entity.Group;
import com.moral.api.entity.Organization;
import com.moral.api.entity.User;
import lombok.Data;
 
/**
 * @ClassName UserDTO
 * @Description TODO
 * @Author 陈凯裕
 * @Date 2021/4/28 14:53
 * @Version TODO
 **/
@Data
public class UserDTO {
 
    private Integer code;
 
    private String msg;
 
    private User user;
 
    private Organization organization;
}