IntelligentRecognition/ah-jjsp-service/.svn/pristine/64/648c7336144f2c8c429ae4f5fcd...

66 lines
1.3 KiB
Plaintext

package com.sercurityControl.proteam.dutyTask.domain;
import cn.afterturn.easypoi.excel.annotation.Excel;
import lombok.Data;
/**
* 球机运行状态实体类
*/
@Data
public class BallStatusStatisticEntity {
/**
*id
*/
@Excel(name = "序号", width = 10.0, orderNum = "0")
private String id;
/**
* 建管单位id
*/
private String orgId;
/**
* 建管单位名称
*/
@Excel(name = "建管单位", width = 20.0, orderNum = "1")
private String orgName;
/**
* 球机总数
*/
@Excel(name = "球机总数", width = 20.0, orderNum = "3")
private Integer ballNum;
/**
* 今日站班会数量
*/
@Excel(name = "今日站班会数量", width = 20.0, orderNum = "2")
private Integer classNum;
/**
* 球机今日开机数
*/
@Excel(name = "今日开机数", width = 20.0, orderNum = "4")
private Integer ballOnNum;
/**
* 球机未开机数
*/
@Excel(name = "今日未开机", width = 20.0, orderNum = "5")
private Integer ballOffNum;
/**
* 开机率
*/
@Excel(name = "开机率", width = 20.0, orderNum = "6")
private String rate;
private String limit;
private String page;
private String type;
}