26 lines
865 B
C#
26 lines
865 B
C#
using AyCode.Core.Consts;
|
|
|
|
namespace TIAM.Core.Consts;
|
|
|
|
public static class TiamConstClient
|
|
{
|
|
public static Guid TransferProductId = Guid.Parse("814b5495-c2e9-4f1d-a73f-37cd5d353078");
|
|
public static Guid[] DevAdminIds = new Guid[2]{Guid.Parse("dcf451d2-cc4c-4ac2-8c1f-da00041be1fd"), Guid.Parse("4cbaed43-2465-4d99-84f1-c8bc6b7025f7") };
|
|
public static Guid[] SysAdmins = new Guid[3]
|
|
{
|
|
Guid.Parse("dcf451d2-cc4c-4ac2-8c1f-da00041be1fd"),
|
|
Guid.Parse("4cbaed43-2465-4d99-84f1-c8bc6b7025f7"),
|
|
Guid.Parse("540271f6-c604-4c16-8160-d5a7cafedf00")
|
|
};
|
|
}
|
|
|
|
public class TiamConst : AcConst
|
|
{
|
|
public static string ProjectIdString = "684f34d1-163a-4077-918f-a9d9df5ce789";
|
|
|
|
static TiamConst()
|
|
{
|
|
ProjectId = Guid.Parse(ProjectIdString);
|
|
ProjectSalt = GenerateProjectSalt(ProjectId.ToString("N"));
|
|
}
|
|
} |