Files
YunTongJackYunTask/Reportapi/MyCode.Project.Services/ServiceBase.cs

29 lines
626 B
C#
Raw Normal View History

2025-07-04 09:50:02 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using System.Threading;
using System.Web;
using MyCode.Project.Infrastructure.Exceptions;
using MyCode.Project.Infrastructure.UnityExtensions;
namespace MyCode.Project.Services
{
/// <summary>
/// 服务基类
/// </summary>
public abstract class ServiceBase
{
2025-07-12 18:52:08 +08:00
/// <summary>
/// 商家ID
/// </summary>
public Guid MerchantId
{
get
{
return Guid.Parse("00000000-0000-0000-0000-000000000009");
}
}
2025-07-04 09:50:02 +08:00
}
}