package com.ruoyi.system.api.domain.dto; import com.fasterxml.jackson.annotation.JsonInclude; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data @ApiModel(value = "小程序获取电话号码", description = "小程序获取电话号码") public class MobileDTO { //微信的 @ApiModelProperty(value = "微信的code") private String code; //支付宝微信的 @ApiModelProperty(value = "支付宝的auth_code") @JsonInclude(JsonInclude.Include.NON_NULL) private String auth_code; @ApiModelProperty("1支付宝 , 2微信") private Integer type; @ApiModelProperty(value = "会员id") private Long memberid; }