1.添加微信小程序验证登录

2.添加敏感词上传
3.保存工作描述时,验证敏感词
This commit is contained in:
sh
2025-10-20 09:54:51 +08:00
parent da48a9c33a
commit 47351f41eb
20 changed files with 681 additions and 0 deletions

View File

@@ -113,4 +113,15 @@ public class AppUser extends BaseEntity
@TableField(exist = false)
@ApiModelProperty("密码")
private String password;
/**
* 微信小程序用户唯一标识
*/
@ApiModelProperty("微信小程序用户唯一标识")
private String openid;
/**
* 微信开放平台全局标识
*/
@ApiModelProperty("微信开放平台全局标识")
private String unionid;
}

View File

@@ -26,6 +26,14 @@ public class LoginBody
* 唯一标识
*/
private String uuid;
/**
* 微信加密的手机号数据
*/
private String encryptedData;
/**
* 加密向量
*/
private String iv;
public String getUsername()
{
@@ -66,4 +74,20 @@ public class LoginBody
{
this.uuid = uuid;
}
public String getEncryptedData() {
return encryptedData;
}
public void setEncryptedData(String encryptedData) {
this.encryptedData = encryptedData;
}
public String getIv() {
return iv;
}
public void setIv(String iv) {
this.iv = iv;
}
}