|
@@ -1,8 +1,6 @@
|
|
|
package com.zanxiang.game.data.serve.pojo.dto;
|
|
|
|
|
|
import com.zanxiang.game.data.serve.pojo.base.BasePage;
|
|
|
-import com.zanxiang.game.data.serve.pojo.entity.AdsAccountAgentDay;
|
|
|
-import com.zanxiang.game.data.serve.pojo.entity.AdsGameRechargeRanking;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
import lombok.Builder;
|
|
@@ -16,6 +14,7 @@ import java.time.LocalDate;
|
|
|
@AllArgsConstructor
|
|
|
@Builder
|
|
|
public class RechargeRankingDTO extends BasePage{
|
|
|
+
|
|
|
@ApiModelProperty(notes = "充值开始日期")
|
|
|
private LocalDate beginDay;
|
|
|
@ApiModelProperty(notes = "充值结束日期")
|
|
@@ -28,4 +27,17 @@ public class RechargeRankingDTO extends BasePage{
|
|
|
|
|
|
@ApiModelProperty(notes = "排序方式:升序asc;降序desc")
|
|
|
private String sortType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 最近充值时间距今的间隔时间(最小分)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("最近充值时间距今的间隔时间(分)")
|
|
|
+ private Long latestAmountUntilNowTimeMin;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 最近充值时间距今的间隔时间(最大分)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("最近充值时间距今的间隔时间(分)")
|
|
|
+ private Long latestAmountUntilNowTimeMax;
|
|
|
+
|
|
|
}
|