zm
2025-03-04 6e332c32f5121a372cecc8305e45f6571e4baa16
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);
}