杜洪波
2025-05-14 9db1c6c261049fbdcb104e6c0e07fa544bb42013
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.product.administration.service.ide;
 
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
import com.product.core.transfer.Transactional;
 
public interface ITeamService {
 
    /**
     *     团队保存
     * @param fse
     */
    public void saveTeam(FieldSetEntity fse);
    
    /**
     *     删除团队
     * @param code
     * @return
     * @throws BaseException
     */
    @Transactional
    public boolean deleteTeam(String code) throws BaseException;
}