FlowAccount.java 2.52 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
package com.hp.cmsz.entity;

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

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

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

    private Long batchId;
    private TimeStamp statsTime;
    private String account;
    private Long transCnt;
    private Long transAvailCnt;
    private Long transTimeAvg;
    private Long time1MobileCnt;
    private Long time2MobileCnt;
    private Long time3MobileCnt;
    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 getAccount() {
        return account;
    }

    public void setAccount(String account) {
        this.account = account;
    }

    public Long getTransCnt() {
        return transCnt;
    }

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

    public Long getTransAvailCnt() {
        return transAvailCnt;
    }

    public void setTransAvailCnt(Long transAvailCnt) {
        this.transAvailCnt = transAvailCnt;
    }

    public Long getTransTimeAvg() {
        return transTimeAvg;
    }

    public void setTransTimeAvg(Long transTimeAvg) {
        this.transTimeAvg = transTimeAvg;
    }

    public Long getTime1MobileCnt() {
        return time1MobileCnt;
    }

    public void setTime1MobileCnt(Long time1MobileCnt) {
        this.time1MobileCnt = time1MobileCnt;
    }

    public Long getTime2MobileCnt() {
        return time2MobileCnt;
    }

    public void setTime2MobileCnt(Long time2MobileCnt) {
        this.time2MobileCnt = time2MobileCnt;
    }

    public Long getTime3MobileCnt() {
        return time3MobileCnt;
    }

    public void setTime3MobileCnt(Long time3MobileCnt) {
        this.time3MobileCnt = time3MobileCnt;
    }

    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;
    }
}