package com.ycl.smoke.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@TableName("ums_ods_in_time_count")
|
public class OdsInTimeCount implements Serializable {
|
@TableId("id")
|
@JsonProperty("Id")
|
private String id;
|
|
@TableField("device_num")
|
@JsonProperty("deviceNum")
|
private Integer deviceNum;
|
|
@TableField("locale_num")
|
@JsonProperty("localeNum")
|
private Integer localeNum;
|
|
@TableField("online_num")
|
@JsonProperty("onlineNum")
|
private Integer onlineNum;
|
|
@TableField("total")
|
@JsonProperty("total")
|
private Integer total;
|
|
@TableField("type")
|
@JsonProperty("type")
|
private Integer type;
|
}
|