You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
package com.zhongyun.dto;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* 积分明细
|
|
*
|
|
* @author Gaoming fangaoming0208@aliyun.com
|
|
* @since 3.0 2024-11-20
|
|
*/
|
|
@Data
|
|
@ApiModel(value = "转化概况")
|
|
public class TransformDTO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@ApiModelProperty(value = "平台访客总数")
|
|
private int userNum;
|
|
@ApiModelProperty(value = "获取人数")
|
|
private int earnPeople;
|
|
@ApiModelProperty(value = "使用人数")
|
|
private int usedPeople;
|
|
@ApiModelProperty(value = "累计发放数")
|
|
private int earnNum;
|
|
@ApiModelProperty(value = "累计使用数")
|
|
private int usedNum;
|
|
@ApiModelProperty(value = "人均使用数")
|
|
private String avgUsed;
|
|
@ApiModelProperty(value = "访客获取转化率")
|
|
private String earnPercent;
|
|
@ApiModelProperty(value = "获取使用转化率")
|
|
private String usedPercent;
|
|
@ApiModelProperty(value = "访客使用转化率")
|
|
private String userUsedPercent;
|
|
|
|
|
|
}
|