杜洪波
2025-03-14 38eaaa83c6ba703edfa90e72054b5548dbeb07e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.product.contract.service.ide;
 
import com.alibaba.fastjson.JSONObject;
import com.product.core.entity.DataTableEntity;
import com.product.core.entity.FieldSetEntity;
import com.product.core.transfer.Transactional;
 
public interface IProjectBusinessService {
 
    JSONObject findProject(FieldSetEntity fse);
 
    JSONObject findTranslate(FieldSetEntity fse);
 
    @Transactional
    boolean saveTranslate(FieldSetEntity fs);
 
    boolean saveProject(FieldSetEntity fse);
}