1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| package com.product.saas.service.idel;
|
| import com.product.core.entity.FieldSetEntity;
|
| public interface ITenantApplyService {
|
| /**
| * 租户注册申请
| * @param fse
| * @return
| */
| boolean saveTenantApply(FieldSetEntity fse);
|
| /**
| * 租户注册撤销
| * @param fse
| * @return
| */
| boolean cancelTenantApply(FieldSetEntity fse);
|
| /**
| * 租户注册完整
| * @param fse
| */
| void applyFinish(FieldSetEntity fse);
| }
|
|