package doumeemes.dao.ext.vo; import doumeemes.core.annotation.excel.ExcelColumn; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * Created by IntelliJ IDEA. * * @Author : Rk * @create 2023/9/5 10:30 */ @Data @ApiModel("工作台活跃数据") public class StagingLoginVO { @ApiModelProperty(value = "今日活跃用户") private Integer dayActiveUserNum; @ApiModelProperty(value = "今日活跃企业") private Integer dayActiveCompanyNum; @ApiModelProperty(value = "本月活跃企业") private Integer monthActiveCompanyNum; @ApiModelProperty(value = "本月登录2次及以上企业数") private Integer monthTwoCompanyNum; @ApiModelProperty(value = "本月登录2次及以上企业数(羚羊)") private Integer monthTwoCompanyLYNum; }