管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-20 ade1aadab51ad5d46292267ff4e59809526908cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
    }
}