杜洪波
2026-03-27 85f968c63cadfe780120deb4b77b8239037d6082
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);
}