feat: harden phase one workflows
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package com.linhelp.common.security;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
|
||||
public class MiniappLoginRequest {
|
||||
@NotBlank(message = "登录凭证不能为空")
|
||||
private String code;
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user