package com.moon.server.entity.sys;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
/**
|
* 下载日志
|
* @author WWW
|
*/
|
public class DownlogEntity implements Serializable {
|
private static final long serialVersionUID = -295796504381949312L;
|
|
private int id;
|
|
private int downid;
|
|
private String ip;
|
|
private int createUser;
|
|
private Timestamp createTime;
|
|
private int updateUser;
|
|
private Timestamp updateTime;
|
|
private String uname;
|
|
private String name;
|
|
private int type;
|
|
private double sizes;
|
|
public DownlogEntity() {
|
}
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public int getDownid() {
|
return downid;
|
}
|
|
public void setDownid(int downid) {
|
this.downid = downid;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
public String getIp() {
|
return ip;
|
}
|
|
public void setIp(String ip) {
|
this.ip = ip;
|
}
|
|
public int getCreateUser() {
|
return createUser;
|
}
|
|
public void setCreateUser(int createUser) {
|
this.createUser = createUser;
|
}
|
|
public Timestamp getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Timestamp createTime) {
|
this.createTime = createTime;
|
}
|
|
public int getUpdateUser() {
|
return updateUser;
|
}
|
|
public void setUpdateUser(int updateUser) {
|
this.updateUser = updateUser;
|
}
|
|
public Timestamp getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Timestamp updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public double getSizes() {
|
return sizes;
|
}
|
|
public void setSizes(double sizes) {
|
this.sizes = sizes;
|
}
|
|
public String getUname() {
|
return uname;
|
}
|
|
public void setUname(String uname) {
|
this.uname = uname;
|
}
|
}
|