cjl
2023-09-27 8c7d9c025fd135ffe1b709d5419a31e7899dcaeb
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;
}