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;
|
}
|