AirChargeStationStatistics.java 1.36 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
package com.zehong.system.domain;

import com.zehong.common.annotation.Excel;

/**
 * @author geng
 * 充装储配站统计
 */
public class AirChargeStationStatistics {

    private Long StationId;

    /**储配站*/
    @Excel(name = "储配站")
    private String stationName;

    /**充装气瓶数*/
    @Excel(name = "充装气瓶数")
    private Integer bottleNum;

    /**充装总量*/
    @Excel(name = "充装总量")
    private Integer chargeMeasure;

    /**充装统计类型*/
    private String statisticsType;


    public Long getStationId() {
        return StationId;
    }

    public void setStationId(Long stationId) {
        StationId = stationId;
    }

    public String getStationName() {
        return stationName;
    }

    public void setStationName(String stationName) {
        this.stationName = stationName;
    }

    public Integer getBottleNum() {
        return bottleNum;
    }

    public void setBottleNum(Integer bottleNum) {
        this.bottleNum = bottleNum;
    }

    public Integer getChargeMeasure() {
        return chargeMeasure;
    }

    public void setChargeMeasure(Integer chargeMeasure) {
        this.chargeMeasure = chargeMeasure;
    }


    public String getStatisticsType() {
        return statisticsType;
    }

    public void setStatisticsType(String statisticsType) {
        this.statisticsType = statisticsType;
    }
}