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

import com.zehong.common.annotation.Excel;

public class BaseInfoStatistics {

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

    /**气瓶数量*/
    @Excel(name = "气瓶数量")
    private int totalBottle;

    /**车辆数量*/
    @Excel(name = "车辆数量")
    private int totalVehicle;

    /**从业人员数量*/
    @Excel(name = "从业人员数量")
    private int totalPractitioner;

    public String getStationName() {
        return stationName;
    }

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

    public int getTotalBottle() {
        return totalBottle;
    }

    public void setTotalBottle(int totalBottle) {
        this.totalBottle = totalBottle;
    }

    public int getTotalVehicle() {
        return totalVehicle;
    }

    public void setTotalVehicle(int totalVehicle) {
        this.totalVehicle = totalVehicle;
    }

    public int getTotalPractitioner() {
        return totalPractitioner;
    }

    public void setTotalPractitioner(int totalPractitioner) {
        this.totalPractitioner = totalPractitioner;
    }

}