north-glass-erp/src/main/java/com/example/erp/controller/dto/UserDTO.java
New file @@ -0,0 +1,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; }