OrderPayResponseVo.java 359 B

1234567891011121314151617181920
  1. package com.llisoft.pay.vo;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. @ApiModel("订单支付返回实体")
  5. public class OrderPayResponseVo {
  6. @ApiModelProperty("HTML文本")
  7. private String html;
  8. public String getHtml() {
  9. return html;
  10. }
  11. public void setHtml(String html) {
  12. this.html = html;
  13. }
  14. }