Pu Zhibing
2 天以前 4228cb0f9ff33e4baa4be0ac904eb927f8d84a19
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.supersavedriving.user.modular.system.util.qianyuntong.model;
 
import lombok.Data;
 
@Data
public class RefundInfoRequest {
    /**
     * 支付交易明细标识
     */
    private String payItemId;
    /**
     * 支付工单标识
     */
    private String payId;
    /**
     * 交易金额,单位分
     */
    private String tradeFee;
}