Newer
Older
huludao / src / main / java / com / newfiber / api / pc / model / entity / CameraStat.java
@新烽开发者 新烽开发者 on 19 Jul 448 bytes init
package com.newfiber.api.pc.model.entity;

import lombok.Data;

import java.io.Serializable;

/**
 * @ClassName CameraStat
 * @Description TODO
 * @Author 张鸿志
 * @Date 2021年4月23日14:17:10 14:17
 * Version 1.0
 **/
@Data
public class CameraStat implements Serializable {

    /** 总数 */
    private Integer total;
    /** 在线数量 */
    private Integer onlineCount;
    /** 不在线数量 */
    private Integer noOnlineCOunt;
}