18756
2024-07-31 da95fc314c3e66a817e72694051b2723bc97ef5a
1
2
3
4
5
6
7
8
9
10
11
package com.product.contract.service.ide;
 
import com.alibaba.fastjson.JSONObject;
import com.product.core.entity.FieldSetEntity;
 
public interface IProjectBusinessService {
 
    JSONObject findProject(FieldSetEntity fse);
 
    boolean saveProject(FieldSetEntity fse);
}