| 1234567891011121314151617181920 |
- package com.fdkankan.manage.vo.response;
- import lombok.AllArgsConstructor;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- @Data
- @NoArgsConstructor
- public class SceneTrendVo {
- private String groupKey;
- private Long userCount;
- private Long sceneCount;
- public SceneTrendVo(String groupKey, Long userCount, Long sceneCount) {
- this.groupKey = groupKey;
- this.userCount = userCount == null ? 0L :userCount;
- this.sceneCount = sceneCount == null ? 0L :sceneCount;
- }
- }
|