guoyuji
2024-03-07 fcf705e1f9a369cab61e60d72048c36a0e1ee793
1
2
3
4
5
6
7
8
9
10
package com.example.erp.controller.dto;
 
import lombok.Data;
@Data //用于接受前端登录额user信息
public class UserDTO {
    private String userId;
    private String pass;
    private String token;
    private String userName;
}