18756
2024-07-25 bdbdf515571035f0e63f06b2300ae0745d019282
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.product.contract.service.ide;
 
import com.alibaba.fastjson.JSONObject;
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
/**
 * @author: ZhouJie
 * @date: 2021/7/1 14:00
 * @description:
 */
public interface IProjectInfoService {
 
    String saveProjectInfo(FieldSetEntity fs) throws BaseException;
 
    boolean deleteProjectInfo(FieldSetEntity fs) throws BaseException;
 
    void saveOrUpdate(FieldSetEntity fse)  throws BaseException;
 
    JSONObject getDataList(String dic_value) throws  BaseException;
 
 
 
}