Pu Zhibing
2025-06-19 c42c20b9c71c25ed119884ffe130ac013afb7f07
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.order.domain.dto;
 
import lombok.Data;
 
/**
 * @program: ruoyi
 * @author: linqingsong
 * @create: 2023-07-22 17:23
 * @description: 成都软思同创科技有限公司
 **/
@Data
public class WXPayNotifyDto {
    private String id;
    private String create_time;
    private String event_type;
    private String resource_type;
    private WXPayNotifyResourceDto resource;
    private String summary;
}