1234567891011121314151617181920 |
- package com.llisoft.pay.vo;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- @ApiModel("订单支付返回实体")
- public class OrderPayResponseVo {
-
- @ApiModelProperty("HTML文本")
- private String html;
- public String getHtml() {
- return html;
- }
- public void setHtml(String html) {
- this.html = html;
- }
-
- }
|