You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
538 B
26 lines
538 B
package com.example.demo.domain.DTO;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName Ipay88DTO
|
|
* @description:
|
|
* @author: Double
|
|
* @create: 2025−12-09 11:44
|
|
* @Version 1.0
|
|
**/
|
|
|
|
@Data
|
|
@NoArgsConstructor
|
|
public class Ipay88DTO {
|
|
private String orderNo;//订单号
|
|
private String currency;//货币
|
|
private String amount;//金额
|
|
private String fee;//手续费
|
|
private String net;//净额
|
|
}
|