Built files from Bizgaze WebServer
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

tenantInfo.js 349B

1234567891011121314
  1. class TenantInfo {
  2. constructor() {
  3. }
  4. static SetCurrentTenant(tenant) {
  5. TenantInfo.CurrentTenant = tenant;
  6. }
  7. static GetCurrentTenant() {
  8. var t = new TenantInfo();
  9. t.ServerUrl = "localhost";
  10. t.TenantId = 100010;
  11. TenantInfo.CurrentTenant = t;
  12. return TenantInfo.CurrentTenant;
  13. }
  14. }