DownInfo.java 1.04 KB
package com.cjs.site.model.download;

import java.util.Date;

import com.cjs.site.model.BaseInfo;

public class DownInfo extends BaseInfo {

    private static final long serialVersionUID = 1L;
    private Integer           id;
    private Integer           sort;
    private Date              downTime;
    private String            downIp;
    private Integer           count;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public Integer getSort() {
        return sort;
    }

    public void setSort(Integer sort) {
        this.sort = sort;
    }

    public Date getDownTime() {
        return downTime;
    }

    public void setDownTime(Date downTime) {
        this.downTime = downTime;
    }

    public String getDownIp() {
        return downIp;
    }

    public void setDownIp(String downIp) {
        this.downIp = downIp;
    }

    public Integer getCount() {
        return count;
    }

    public void setCount(Integer count) {
        this.count = count;
    }

}