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;
|
}
|
}
|