| | |
| | | @ApiModel("微信授权手机号请求类") |
| | | public class WxPhoneRequest implements Serializable { |
| | | |
| | | @NotEmpty(message = "encryptedData 不能为空") |
| | | @ApiModelProperty(value = "encryptedData") |
| | | private String encryptedData; |
| | | // @NotEmpty(message = "encryptedData 不能为空") |
| | | // @ApiModelProperty(value = "encryptedData") |
| | | // private String encryptedData; |
| | | // |
| | | // @NotEmpty(message = "iv 不能为空") |
| | | // @ApiModelProperty(value = "iv") |
| | | // private String iv; |
| | | // |
| | | // @NotEmpty(message = "sessionKey 不能为空") |
| | | // @ApiModelProperty(value = "sessionKey") |
| | | // private String sessionKey; |
| | | |
| | | @NotEmpty(message = "iv 不能为空") |
| | | @ApiModelProperty(value = "iv") |
| | | private String iv; |
| | | @NotEmpty(message = "openid 不能为空") |
| | | @ApiModelProperty(value = "openid") |
| | | private String openid; |
| | | |
| | | @NotEmpty(message = "sessionKey 不能为空") |
| | | @ApiModelProperty(value = "sessionKey") |
| | | private String sessionKey; |
| | | @NotEmpty(message = "code 不能为空") |
| | | @ApiModelProperty(value = "code") |
| | | private String code; |
| | | |
| | | private Integer memberId; |
| | | |
| | | @ApiModelProperty(value = "邀请码") |
| | | private String recId; |
| | | |
| | | } |