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.
28 lines
717 B
28 lines
717 B
package com.zsz.pojo;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
@Data
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
@TableName("tb_student")
|
|
public class Student {
|
|
@TableId(value = "id",type = IdType.AUTO)
|
|
private Integer id;
|
|
private String sno;
|
|
private String name;
|
|
private char gender;
|
|
private String password;
|
|
private String email;
|
|
private String telephone;
|
|
private String address;
|
|
private String introducation;
|
|
private String portraitPath;
|
|
private String clazzName;
|
|
}
|