weaver-hrm-organization/src/com/engine/organization/service/FieldDefinedService.java

54 lines
1012 B
Java
Raw Normal View History

2022-06-14 09:36:47 +08:00
package com.engine.organization.service;
2022-06-15 11:25:23 +08:00
import com.engine.organization.entity.extend.param.ExtendTitleSaveParam;
2022-06-14 16:10:26 +08:00
import com.engine.organization.entity.fieldset.vo.TypeTreeVO;
import com.engine.organization.enums.ModuleTypeEnum;
2022-06-14 09:36:47 +08:00
import java.util.List;
2022-06-14 15:29:22 +08:00
import java.util.Map;
2022-06-14 09:36:47 +08:00
/**
* @Author weaver_cl
2022-06-14 11:07:48 +08:00
* @description:
2022-06-14 09:36:47 +08:00
* @Date 2022/6/13
* @Version V1.0
**/
public interface FieldDefinedService {
2022-06-14 15:29:22 +08:00
2022-06-14 16:10:26 +08:00
List<TypeTreeVO> getTree(ModuleTypeEnum moduleTypeEnum);
2022-06-14 11:07:48 +08:00
2022-06-14 15:29:22 +08:00
/**
* 获取标题分组
*
* @param groupType
* @return
*/
Map<String, Object> getTabInfo(String groupType);
/**
* 保存自定义字段
*
* @param data
* @return
*/
int saveFields(String data);
2022-06-15 11:25:23 +08:00
/**
* 分组维护
*
* @param param
* @return
*/
Map<String, Object> saveGroup(ExtendTitleSaveParam param);
/**
* 新建分组
*
* @param param
* @return
*/
Map<String, Object> saveTitle(ExtendTitleSaveParam param);
2022-06-14 09:36:47 +08:00
}