1
dd
2025-11-12 618f535897f36718829a0f36689ee78e8ce0032f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.system.domain.dto;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class PayCallbackDTO {
    private String channelCode;
    private String orderId;
    private BigDecimal orderMoney;
    private Integer orderStatus;
    private String sign;
    private String userCode;
}