| package com.doumee.dao.web.response; | 
|   | 
| import com.doumee.biz.zbom.model.zhongtai.response.ZTCatalogInfoResponse; | 
| import com.doumee.dao.business.model.News; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2024/7/17 14:19 | 
|  */ | 
| @Data | 
| public class DailyUpdatesResponse { | 
|   | 
|     @ApiModelProperty(value = "今日上新数量") | 
|     private Long dailyUpdateNum; | 
|   | 
|     @ApiModelProperty(value = "转发数量") | 
|     private Long shareNum; | 
|   | 
|     @ApiModelProperty(value = "咨询列表") | 
|     private List<News> newsList; | 
|   | 
| } |