package com.product.org.admin.service.idel; import com.product.core.entity.FieldSetEntity; import com.product.core.exception.BaseException; /** * * Copyright LX-BASE * @Title: IOperationReplaceService * @Project: LX-BASE-SERVER * @Date: 2020年5月30日 上午11:58:38 * @Author: 郑盟 * @Description:业务代理配置 */ public interface IOperationReplaceService { String addReplaceList(FieldSetEntity fse) throws BaseException; boolean deleteReplaceList(FieldSetEntity fse) throws BaseException; boolean updateReplaceList(FieldSetEntity fse) throws BaseException; }