| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package common.utils.tl.vo;
- import com.fasterxml.jackson.annotation.JsonProperty;
- import lombok.AllArgsConstructor;
- import lombok.NoArgsConstructor;
- import lombok.experimental.SuperBuilder;
- import common.utils.tl.vo.basevo.TlBaseRequestVO;
- /**
- * @ClassName: TlScanqrPayRequestVO
- * @Description: TlScanqrPayRequestVO
- * @Auther: wang hong wei
- * @Date: 2024/09/25
- */
- @SuperBuilder
- @NoArgsConstructor
- @AllArgsConstructor
- public class TlH5UnionPayRequestVO extends TlBaseRequestVO {
- /**
- * trxamt:交易金额 单位为分
- */
- @JsonProperty("trxamt")
- private String trxamt;
- /**
- * reqsn:商户订单号
- */
- @JsonProperty("reqsn")
- private String reqsn;
- /**
- * charset:charset
- */
- @JsonProperty("charset")
- private String charset;
- /**
- * body:订单标题
- */
- @JsonProperty("body")
- private String body;
- /**
- * notify_url:交易结果通知地址
- */
- @JsonProperty("notify_url")
- private String notifyUrl;
- /**
- * returl:returl
- */
- @JsonProperty("returl")
- private String returl;
- }
|