管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-12-23 8a373a66936407266e860a19c0d44c406baae7cc
src/main/java/com/lf/server/entity/all/BaseEntity.java
@@ -14,7 +14,7 @@
 */
public class BaseEntity implements Serializable {
    @TableId(type = IdType.AUTO)
    private Long gid;
    private Integer gid;
    private String eventid;
@@ -50,11 +50,11 @@
    public BaseEntity() {
    }
    public Long getGid() {
    public Integer getGid() {
        return gid;
    }
    public void setGid(Long gid) {
    public void setGid(Integer gid) {
        this.gid = gid;
    }