2026-06-24 f4bd1f3c89d906131495a0aca5aaf82966378510
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
package cn.iocoder.yudao.module.pay.controller.admin.order.vo;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.time.LocalDateTime;
 
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
 
@Schema(description = "管理后台 - 支付订单分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class PayOrderPageReqVO extends PageParam {
 
    @Schema(description = "应用编号", example = "1024")
    private Long appId;
 
    @Schema(description = "渠道编码", example = "wx_app")
    private String channelCode;
 
    @Schema(description = "商户订单编号", example = "4096")
    private String merchantOrderId;
 
    @Schema(description = "渠道编号", example = "1888")
    private String channelOrderNo;
 
    @Schema(description = "支付单号", example = "2014888")
    private String no;
 
    @Schema(description = "支付状态", example = "0")
    private Integer status;
 
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
    @Schema(description = "创建时间")
    private LocalDateTime[] createTime;
 
}