jinpengyong
2021-11-03 60b08301cbc6f150e4c0107bd16b53673214d972
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;
}