|
@@ -61,6 +61,7 @@ public interface UserService {
|
|
@NotNull @TextFormat(lengthMin = 6, lengthMax = 18, notChinese = true) @HttpParam(name = "password", type = HttpParamType.COMMON, description = "用户密码") String password,
|
|
@NotNull @TextFormat(lengthMin = 6, lengthMax = 18, notChinese = true) @HttpParam(name = "password", type = HttpParamType.COMMON, description = "用户密码") String password,
|
|
@HttpParam(name = "loginType", type = HttpParamType.COMMON, description = "登录方式") Integer loginType,
|
|
@HttpParam(name = "loginType", type = HttpParamType.COMMON, description = "登录方式") Integer loginType,
|
|
@HttpParam(name = "raw", type = HttpParamType.COMMON, description = "第三方平台返回的数据") String raw,
|
|
@HttpParam(name = "raw", type = HttpParamType.COMMON, description = "第三方平台返回的数据") String raw,
|
|
|
|
+ @HttpParam(name = "cid", type = HttpParamType.COMMON, description = "cid") String cid,
|
|
@NotNull @HttpParam(name = "ip", type = HttpParamType.IP, description = "登录IP") String ip) throws ServiceException;
|
|
@NotNull @HttpParam(name = "ip", type = HttpParamType.IP, description = "登录IP") String ip) throws ServiceException;
|
|
@HttpMethod(description = "PC端用户登录")
|
|
@HttpMethod(description = "PC端用户登录")
|
|
UserDTO loginPC(
|
|
UserDTO loginPC(
|