package com.product.administration.service.ide;
|
|
import com.product.core.entity.FieldSetEntity;
|
import com.product.core.exception.BaseException;
|
|
public interface ITaskGoalService {
|
|
String saveFieldSetEntity(FieldSetEntity fse)throws BaseException;
|
|
boolean delete(FieldSetEntity fse)throws BaseException;
|
}
|