forked from pt4ebqrwy/Epidemic
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
323 B
16 lines
323 B
package com.liu.covid.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class User {
|
|
@TableId(type = IdType.AUTO)
|
|
private Long id;
|
|
private String username;
|
|
private String password;
|
|
private String depart;
|
|
|
|
}
|