1
2
3
4
5
6
7
8
9
10
11
12
13
| package cc.mrbird.febs.pay.model;
|
| import lombok.Data;
|
| @Data
| public class FIUUOrderRequest {
| private String amount;
| private String orderId;
| private String buyerName;
| private String buyerEmail;
| private String buyerMobile;
| private String description;
| }
|
|