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;
|
}
|