jinpengyong
2024-02-02 28923b3d67c58b032bc4ff128aa1d5e62d73dba1
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;
}