eight
2025-04-01 3474dd8db7f654f0a9e1d55a1d404c4ca43f78fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
### 获取租户编号 /admin-api/system/get-id-by-name
GET {{baseUrl}}/system/tenant/get-id-by-name?name=芋道源码
 
### 创建租户 /admin-api/system/tenant/create
POST {{baseUrl}}/system/tenant/create
Content-Type: application/json
Authorization: Bearer {{token}}
tenant-id: {{adminTenentId}}
 
{
  "name": "芋道",
  "contactName": "芋艿",
  "contactMobile": "15601691300",
  "status": 0,
  "domain": "https://www.iocoder.cn",
  "packageId": 110,
  "expireTime": 1699545600000,
  "accountCount": 20,
  "username": "admin",
  "password": "123321"
}