30 lines
689 B
C#
30 lines
689 B
C#
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;
|
|
using static MyCode.Project.Infrastructure.Constant.GlobalConfig;
|
|
|
|
namespace MyCode.Project.Services
|
|
{
|
|
/// <summary>
|
|
/// 服务基类
|
|
/// </summary>
|
|
public abstract class ServiceBase
|
|
{
|
|
/// <summary>
|
|
/// 商家ID
|
|
/// </summary>
|
|
public Guid MerchantId
|
|
{
|
|
get
|
|
{
|
|
|
|
return Guid.Parse(SysConfig.MerchantId);
|
|
}
|
|
}
|
|
}
|
|
} |