无关风月
2025-04-01 deb91eb570baecdae92aeeb105661209f59e06e2
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
package com.dsh.activity.entity;
 
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
import java.util.List;
 
@Data
public class HuiminPayQuery {
    // 基础查询条件
    private String huiMinName;        // 惠民名称
    private String huiMinType;        // 惠民类型
    private Long operatorId;          // 运营商ID
    private Long useId;               // 使用记录ID
    
    // 用户信息
    private String userName;          // 用户名
    private String phone;             // 联系方式
    
    // 时间范围
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date paymentTimeStart; // 支付时间-开始
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date paymentTimeEnd; // 支付时间-结束
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date endTimeStart;     // 结束时间-开始
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date endTimeEnd;     // 结束时间-结束
 
    // 状态查询
    private Integer status;     // 使用状态
    //购买用户
    private List<Integer> appUserIds;
 
    private long current;
    private long size;
 
}