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.
25 lines
633 B
25 lines
633 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_clazz")
|
|
public class Clazz {
|
|
@TableId(value = "id",type = IdType.AUTO)
|
|
private Integer id;
|
|
private String name;
|
|
private Integer number;
|
|
private String introducation;
|
|
private String headmaster;
|
|
private String email;
|
|
private String telephone;
|
|
private String gradeName;
|
|
}
|