FlowServer.java 3.25 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
package com.hp.cmsz.entity;

import org.apache.commons.net.ntp.TimeStamp;

import javax.persistence.*;
import java.io.Serializable;

/**
 * ccolap.app_sm_db_server_kpi_t表对应的实体类
 *
 * @author Liu Na
 *
 */
@Entity
@Table(name = "app_sm_db_server_kpi_t",schema = "CCOLAP")
public class FlowServer implements Serializable {

    private Long batchId;
    private TimeStamp statsTime;
    private String province;
    private String serverIp;
    private Long activeAccountCnt;
    private Long transCnt;
    private Long transAvg;
    private Long transAvail;
    private Long s10xCnt;
    private Long s20xCnt;
    private Long s30xCnt;
    private Long s40xCnt;
    private Long s50xCnt;
    private Long sotherCnt;
    private Long statsPeriod;
    private TimeStamp crtTime;

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    public Long getBatchId() {
        return batchId;
    }

    public void setBatchId(Long batchId) {
        this.batchId = batchId;
    }

    public TimeStamp getStatsTime() {
        return statsTime;
    }

    public void setStatsTime(TimeStamp statsTime) {
        this.statsTime = statsTime;
    }

    public String getProvince() {
        return province;
    }

    public void setProvince(String province) {
        this.province = province;
    }

    public String getServerIp() {
        return serverIp;
    }

    public void setServerIp(String serverIp) {
        this.serverIp = serverIp;
    }

    public Long getActiveAccountCnt() {
        return activeAccountCnt;
    }

    public void setActiveAccountCnt(Long activeAccountCnt) {
        this.activeAccountCnt = activeAccountCnt;
    }

    public Long getTransCnt() {
        return transCnt;
    }

    public void setTransCnt(Long transCnt) {
        this.transCnt = transCnt;
    }

    public Long getTransAvg() {
        return transAvg;
    }

    public void setTransAvg(Long transAvg) {
        this.transAvg = transAvg;
    }

    public Long getTransAvail() {
        return transAvail;
    }

    public void setTransAvail(Long transAvail) {
        this.transAvail = transAvail;
    }

    public Long getS10xCnt() {
        return s10xCnt;
    }

    public void setS10xCnt(Long s10xCnt) {
        this.s10xCnt = s10xCnt;
    }

    public Long getS20xCnt() {
        return s20xCnt;
    }

    public void setS20xCnt(Long s20xCnt) {
        this.s20xCnt = s20xCnt;
    }

    public Long getS30xCnt() {
        return s30xCnt;
    }

    public void setS30xCnt(Long s30xCnt) {
        this.s30xCnt = s30xCnt;
    }

    public Long getS40xCnt() {
        return s40xCnt;
    }

    public void setS40xCnt(Long s40xCnt) {
        this.s40xCnt = s40xCnt;
    }

    public Long getS50xCnt() {
        return s50xCnt;
    }

    public void setS50xCnt(Long s50xCnt) {
        this.s50xCnt = s50xCnt;
    }

    public Long getSotherCnt() {
        return sotherCnt;
    }

    public void setSotherCnt(Long sotherCnt) {
        this.sotherCnt = sotherCnt;
    }

    public Long getStatsPeriod() {
        return statsPeriod;
    }

    public void setStatsPeriod(Long statsPeriod) {
        this.statsPeriod = statsPeriod;
    }

    public TimeStamp getCrtTime() {
        return crtTime;
    }

    public void setCrtTime(TimeStamp crtTime) {
        this.crtTime = crtTime;
    }
}