huliguo
2 天以前 affd7e9f1cc591be36102299cac45b35d9536a17
1
2
3
4
5
6
7
8
9
10
11
package com.linghu.model.dto;
 
import com.linghu.model.entity.User;
import lombok.Data;
 
@Data
public class UserDto  {
    private String name;
    private String email;
    private String password;
}