liulin
2025-07-02 b9f0f641b85bbbfe74fc23efe4f4965586d9e3af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.lunhan.water.common.wechat.res;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
public class ResWechatPrePay {
    @JsonProperty("prepay_id")
    private String prepayId;
 
    public String getPrepayId() {
        return prepayId;
    }
 
    public void setPrepayId(String prepayId) {
        this.prepayId = prepayId;
    }
}