许鹏程
2023-05-25 213cc37cbf0b2515a4de56cc1e01813211bad183
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.product.admin.service.idel;
 
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
/**
 * @program: base-server-cache
 * @description: 多表关联高级参照接口
 * @author: xu peng cheng
 * @create: 2020-12-10 09:59
 */
public interface ISystemPromptService {
    /**
     * 新增高级参照配置
     * @param fse
     * @return
     * @throws BaseException
     */
    String addPrompt(FieldSetEntity fse)throws BaseException;
    /**
     * 修改高级参照配置
     * @param fse
     * @return
     * @throws BaseException
     */
    boolean updatePrompt(FieldSetEntity fse)throws BaseException;
 
}