package com.ruoyi.system.api.domain.dto; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data public class AppMiniLoginDTO { //微信的 @ApiModelProperty(value = "微信的code") private String code; //支付宝微信的 @ApiModelProperty(value = "支付宝的auth_code") private String auth_code; @ApiModelProperty("1支付宝 , 2微信") private Integer type; }