18756
2024-09-03 eca3f19308e5bc70bade437314f55a4ccb9c0d47
1
2
3
4
5
6
7
8
9
10
11
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;
}