网约车笔记
作者:互联网
<component name="RunDashboard"> <option name="configurationTypes"> <set> <option value="SpringBootApplicationConfigurationType" /> </set> </option> <option name="ruleStates"> <list> <RuleState> <option name="name" value="ConfigurationTypeDashboardGroupingRule" /> </RuleState> <RuleState> <option name="name" value="StatusDashboardGroupingRule" /> </RuleState> </list> </option> </component>
https://blog.csdn.net/qq_32352777/article/details/108424932?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522165571863616782248567032%2522%252C%2522scm%2522%253A%252220140713.130102334..%2522%257D&request_id=165571863616782248567032&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2~all~top_click~default-2-108424932-null-null.142^v17^pc_search_result_control_group,157^v15^new_3&utm_term=Validated&spm=1018.2226.3001.4187
@Data public class UserAuthRequest { //乘客手机 @NotBlank(message = "手机号不能为空") @Pattern(message = "手机校验不正确",regexp ="^((13[0-9])|(14[0,1,4-9])|(15[0-3,5-9])|(16[2,5,6,7])|(17[0-8])|(18[0-9])|(19[0-3,5-9]))\\d{8}$")
) private String passengerPhone; //验证码 @NotBlank(message = "验证码不能为空") @Pattern(message = "验证码不正确",regexp = "^[0-9]{6}$") private String code; }
JSONObject data = JSONObject.fromObject(responseResult.getData().toString());
VerifyCodeResponse verifyCodeResponse = (VerifyCodeResponse)JSONObject.toBean(data,VerifyCodeResponse.class);
标签:2522%,VerifyCodeResponse,108424932,验证码,笔记,JSONObject,网约车,message 来源: https://www.cnblogs.com/Lcch/p/16395283.html