You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.engine.organization.service;
|
|
|
|
|
|
|
|
|
|
|
|
import com.engine.organization.entity.extend.param.ExtendTitleSaveParam;
|
|
|
|
import com.engine.organization.entity.fieldset.param.FieldTypeTreeParam;
|
|
|
|
import com.engine.organization.entity.fieldset.vo.TypeTreeVO;
|
|
|
|
import com.engine.organization.enums.ModuleTypeEnum;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Author weaver_cl
|
|
|
|
* @description:
|
|
|
|
* @Date 2022/6/13
|
|
|
|
* @Version V1.0
|
|
|
|
**/
|
|
|
|
public interface FieldDefinedService {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取左侧树
|
|
|
|
* @param moduleTypeEnum
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
List<TypeTreeVO> getTree(ModuleTypeEnum moduleTypeEnum);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取标题分组
|
|
|
|
*
|
|
|
|
* @param groupType
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
Map<String, Object> getTabInfo(String groupType);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 保存自定义字段
|
|
|
|
*
|
|
|
|
* @param data
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
int saveFields(String data);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 分组维护
|
|
|
|
*
|
|
|
|
* @param param
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
Map<String, Object> saveGroup(ExtendTitleSaveParam param);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 新建分组
|
|
|
|
*
|
|
|
|
* @param param
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
Map<String, Object> saveTitle(ExtendTitleSaveParam param);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 新增类型树
|
|
|
|
* @param moduleTypeEnum
|
|
|
|
* @param fieldTypeTreeParam
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
void addTree(ModuleTypeEnum moduleTypeEnum, FieldTypeTreeParam fieldTypeTreeParam);
|
|
|
|
|
|
|
|
}
|