AirChargeOperatorStatistics.java 439 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.zehong.system.domain;

import com.zehong.common.annotation.Excel;

/**
 * @author geng
 * 充装人员统计
 */
public class AirChargeOperatorStatistics extends AirChargeStationStatistics {

    /**充装人*/
    @Excel(name = "充装人")
    private String operator;

    public String getOperator() {
        return operator;
    }

    public void setOperator(String operator) {
        this.operator = operator;
    }
}