完善c端登录

This commit is contained in:
menxipeng
2025-07-14 23:21:19 +08:00
parent 05403e3485
commit 121448abc4
18 changed files with 555 additions and 56 deletions

View File

@@ -135,7 +135,37 @@
<groupId>org</groupId>
<artifactId>jaudiotagger</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.40</version>
</dependency>
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>dysmsapi20170525</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
</dependency>
</dependencies>

View File

@@ -1,43 +1,27 @@
package com.ruoyi.common.core.domain.entity;
import lombok.Data;
import lombok.Getter;
@Data
public class ShopUser {
/**
* 1 账号密码 2 验证码 3 一键登录
*/
private int method;
@Getter
private String username;
private String password;
private String phone;
private Long userId;
public String getUsername() {
return username;
}
private String uMtoken;
public void setUsername(String username) {
this.username = username;
}
private String code;
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
private String msg;
}

View File

@@ -0,0 +1,25 @@
package com.ruoyi.common.core.domain.entity;
import lombok.Data;
import lombok.Getter;
@Data
public class ShopUserResq {
/**
* 1 账号密码 2 验证码 3 一键登录
*/
private String method;
private String username;
private String password;
private String phone;
private Long userId;
private String uMtoken;
private String code;
}