This commit is contained in:
2025-07-14 20:39:36 +08:00
parent 995a8f115a
commit 97d3da3116
31 changed files with 2584 additions and 36 deletions

View File

@@ -16,13 +16,13 @@ namespace MyCode.Project.WebApi.Areas.Wechat.Controllers
/// <summary>
/// 取得登陆信息
/// </summary>
protected MemberLoginInfo CurrentLogin
protected LoginInfo CurrentLogin
{
get
{
var obj = this.RequestContext.RouteData.Values[Const.LoginInfoKey];
return ((JObject)obj).ToObject<MemberLoginInfo>();
return ((JObject)obj).ToObject<LoginInfo>();
}
}
}

View File

@@ -50,6 +50,18 @@ namespace MyCode.Project.WebApi.Controllers
}
#endregion
#region
/// <summary>
/// 合并吉客云订单到新表
/// </summary>
[HttpGet]
[AllowAnonymous]
public string GetAndMergeJackYunOrder(string now)
{
return _jackYunTaskService.GetAndMergeJackYunOrder(now);
}
#endregion
//#region 订单查询