101captain
2022-05-27 84b51d9bfddcc8da58823fde1b322a8168db5cff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.panzhihua.common.model.vos.community.convenient;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
/**
 * @title: ConvenientConsultationStatisticsVO
 * @projectName: 成都呐喊信息技术有限公司-智慧社区项目
 * @description: 便民服务商家咨询量
 * @author: hans
 * @date: 2021/09/16 13:49
 */
@Data
@ApiModel("便民服务商家咨询量")
public class ConvenientConsultationStatisticsVO {
 
    private Long merchantId;
 
    private Integer totalConsultationNum;
}