2022-06-14 09:36:47 +08:00
|
|
|
package com.engine.organization.service;
|
|
|
|
|
|
|
|
|
|
import com.engine.organization.entity.fieldset.TypeTreeDTO;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @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 11:37:27 +08:00
|
|
|
|
2022-06-14 09:36:47 +08:00
|
|
|
List<TypeTreeDTO> getTree(String moduleName);
|
2022-06-14 11:07:48 +08:00
|
|
|
|
2022-06-14 09:36:47 +08:00
|
|
|
}
|