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;
|
|
}
|