Pu Zhibing
2025-02-27 f0a9a41697a8568e8b3bd3436c450e68b3298916
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
package com.panzhihua.common.model.vos.visit;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 后台走访统计
 * 
 * @author xyh
 * @date 2021/6/21 14:34
 */
@ApiModel("走访统计VO")
@Data
public class EventVisitCountVO {
 
    @ApiModelProperty("待走访")
    private Long visit;
 
    @ApiModelProperty("已走访")
    private Long visited;
 
    @ApiModelProperty("已撤销")
    private Long canceled;
 
}