杜洪波
2026-03-16 b3208178914f94a4ecd1acdd3465e5bdedafac95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.product.saas.service.idel;
 
import com.product.core.entity.FieldSetEntity;
 
public interface ITenantApplyService {
 
    /**
     *     租户注册申请
     * @param fse
     * @return
     */
    boolean saveTenantApply(FieldSetEntity fse);
    
    boolean cancelTenantApply(FieldSetEntity fse);
}