feat: harden phase one workflows

This commit is contained in:
王鹏
2026-07-14 16:04:51 +08:00
parent 47f4a24760
commit 767534df48
103 changed files with 4849 additions and 388 deletions

View File

@@ -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;
}
}