chenlu
2024-04-25 e42a1f99f14136657f78c0a803014acb9e03972c
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;
}