管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-12-23 8a373a66936407266e860a19c0d44c406baae7cc
src/main/java/com/lf/server/entity/sys/DownlogEntity.java
@@ -1,8 +1,5 @@
package com.lf.server.entity.sys;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import java.sql.Timestamp;
@@ -11,45 +8,46 @@
 * @author WWW
 */
public class DownlogEntity implements Serializable {
    private static final long serialVersionUID = 2791055269920047470L;
    private static final long serialVersionUID = -295796504381949312L;
    @TableId(type = IdType.AUTO)
    private Integer id;
    private int id;
    private Integer downid;
    private int downid;
    private String name;
    private Integer type;
    private int type;
    private double sizes;
    private String ip;
    private Integer createUser;
    private int createUser;
    private Timestamp createTime;
    private Integer updateUser;
    private int updateUser;
    private Timestamp updateTime;
    private String createName;
    public DownlogEntity() {
    }
    public Integer getId() {
    public int getId() {
        return id;
    }
    public void setId(Integer id) {
    public void setId(int id) {
        this.id = id;
    }
    public Integer getDownid() {
    public int getDownid() {
        return downid;
    }
    public void setDownid(Integer downid) {
    public void setDownid(int downid) {
        this.downid = downid;
    }
@@ -61,11 +59,11 @@
        this.name = name;
    }
    public Integer getType() {
    public int getType() {
        return type;
    }
    public void setType(Integer type) {
    public void setType(int type) {
        this.type = type;
    }
@@ -85,11 +83,11 @@
        this.ip = ip;
    }
    public Integer getCreateUser() {
    public int getCreateUser() {
        return createUser;
    }
    public void setCreateUser(Integer createUser) {
    public void setCreateUser(int createUser) {
        this.createUser = createUser;
    }
@@ -101,11 +99,11 @@
        this.createTime = createTime;
    }
    public Integer getUpdateUser() {
    public int getUpdateUser() {
        return updateUser;
    }
    public void setUpdateUser(Integer updateUser) {
    public void setUpdateUser(int updateUser) {
        this.updateUser = updateUser;
    }
@@ -116,4 +114,12 @@
    public void setUpdateTime(Timestamp updateTime) {
        this.updateTime = updateTime;
    }
    public String getCreateName() {
        return createName;
    }
    public void setCreateName(String createName) {
        this.createName = createName;
    }
}