package cc.mrbird.febs.pay.model;
|
|
import lombok.Data;
|
|
/**
|
* {"req_time":"20221026100323",
|
* "version":"1.0",
|
* "req_data":{
|
* "out_order_no":"GHSNVDY8033038232443530",
|
* "merchant_no":"8222900701107M5",
|
* "total_amount":1,
|
* "order_efficient_time":"20221118220823",
|
* "notify_url":"",
|
* "support_cancel":0,
|
* "support_refund":1,
|
* "support_repeat_pay":1,
|
* "order_info":"测试"}}
|
*/
|
@Data
|
public class LaKaLaCreateOrderReqDate {
|
private String out_order_no;
|
private String merchant_no;
|
private long total_amount;
|
private String order_efficient_time;
|
private String notify_url;
|
private int support_cancel;
|
private int support_refund;
|
private int support_repeat_pay;
|
private String order_info;
|
private String counter_param;
|
}
|