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.
23 lines
572 B
23 lines
572 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
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
@TableName("tb_grade")
|
|
public class Grade {
|
|
@TableId(value = "id",type = IdType.AUTO)
|
|
private Integer id;
|
|
private String name;
|
|
private String manager;
|
|
private String email;
|
|
private String telephone;
|
|
private String introducation;
|
|
}
|