sunshine
2024-11-05 00b4581009af28098da4286a8ef9f4d72c7c5728
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.nova.sankuai.domain.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/7/19
 */
@Data
@ApiModel(value = "城市分类盈利分析报表SqlVo")
public class CityProfitAnalysisReportVo {
 
    @ApiModelProperty(value = "渠道名称")
    private String chName;
 
    @ApiModelProperty(value = "渠道Code")
    private String chCode;
 
    @ApiModelProperty(value = "注册数")
    private Integer registerSum;
 
    @ApiModelProperty(value = "注册成本")
    private Integer registerCost;
 
    @ApiModelProperty(value = "联登人数")
    private Integer collisionSum;
 
    @ApiModelProperty(value = "联登收入")
    private Integer collisionIncome;
 
    @ApiModelProperty(value = "资方列表人数")
    private Integer capitalSum;
 
    @ApiModelProperty(value = "资方列表收入")
    private Integer capitalIncome;
 
    @ApiModelProperty(value = "审批分流人数")
    private Integer auditSum;
 
    @ApiModelProperty(value = "审批分流收入")
    private Integer auditIncome;
 
}