15

package com.example.demo11.entity;

import lombok.Data;

@Data
public class User {
private Integer id;
private String userId;
private String password;
private Integer role;
}
package com.example.demo11.entity;
import java.time.LocalDateTime;
import lombok.Data;

@Data
public class Users {
private Integer id;
private String userId;
private String username;
private String workshop;
private String team;
private String gl;
private String levels;
private String history;
}
posted @ 2024-11-20 10:06  liuxuechao  阅读(4)  评论(0)    收藏  举报