廖井涛
2024-05-11 91f291a2c3b4e41fc0b44f2395ad5c956803ee8c
1
2
3
4
5
6
7
8
9
10
11
package com.example.erp.controller.dto;
 
import lombok.Data;
@Data //用于接受前端登录额user信息
public class UserDTO {
    private Integer id;
    private String userId;
    private String pass;
    private String token;
    private String userName;
}