liukangdong
2024-09-29 b2d360d9113b6955287108ca9e90d76a1f3c1419
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
 
}