package com.lf.server.entity.all;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
/**
|
* 基础实体类
|
* @author WWW
|
*/
|
public class BaseEntity {
|
@TableId(type = IdType.AUTO)
|
private Integer gid;
|
|
public Integer getGid() {
|
return gid;
|
}
|
|
public void setGid(Integer gid) {
|
this.gid = gid;
|
}
|
}
|