1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.dsh.course.feignClient.competition.model;
|
| import io.swagger.models.auth.In;
| import lombok.Data;
|
| import java.math.BigDecimal;
| import java.util.List;
|
| /**
| * 收入管理Query
| */
| @Data
| public class CompetitionQuery {
| // 收入时间
| private String time;
| // 收入金额
| private BigDecimal amount;
| // 用户ids
| private List<Integer> userIds;
| // 筛选是平台 还是运营商 还是门店
| private Integer type;
| private Integer insertType;
| }
|
|