许鹏程
2024-08-22 56ea74f3d449c9821b3b02bad61178c03b1d7e9a
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;
}