Commit 51c9b061 authored by 黄奎's avatar 黄奎

页面修改

parent 18c95468
...@@ -13,9 +13,15 @@ namespace Mall.Common.API ...@@ -13,9 +13,15 @@ namespace Mall.Common.API
public class RequestParm public class RequestParm
{ {
/// <summary> /// <summary>
/// 集团id /// 商户Id
/// </summary> /// </summary>
public int groupId { get; set; } public int TenantId { get; set; }
/// <summary>
/// 小程序Id
/// </summary>
public int MallBaseId { get; set; }
/// <summary> /// <summary>
/// 用户ID /// 用户ID
/// </summary> /// </summary>
......
...@@ -20,6 +20,15 @@ namespace Mall.Common ...@@ -20,6 +20,15 @@ namespace Mall.Common
set; set;
} }
/// <summary>
/// 小程序Id
/// </summary>
public int MallBaseId
{
get;
set;
}
/// <summary> /// <summary>
/// 账号 /// 账号
/// </summary> /// </summary>
......
...@@ -90,6 +90,7 @@ namespace Mall.WebApi.Controllers.User ...@@ -90,6 +90,7 @@ namespace Mall.WebApi.Controllers.User
AccountStatus = model.AccountStatus, AccountStatus = model.AccountStatus,
Token = token, Token = token,
SecretKey="", SecretKey="",
MallBaseId=0,
}; };
UserReidsCache.UserInfoSet(UserModuleCacheKeyConfig.Mall_Login_Info + model.TenantId, obj, Config.JwtExpirTime); UserReidsCache.UserInfoSet(UserModuleCacheKeyConfig.Mall_Login_Info + model.TenantId, obj, Config.JwtExpirTime);
return ApiResult.Success("", obj); return ApiResult.Success("", obj);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment