18 lines
312 B
Java
18 lines
312 B
Java
|
|
package com.engine.organization.service;
|
||
|
|
|
||
|
|
import com.engine.organization.entity.fieldset.TypeTreeDTO;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @Author weaver_cl
|
||
|
|
* @Description: TODO
|
||
|
|
* @Date 2022/6/13
|
||
|
|
* @Version V1.0
|
||
|
|
**/
|
||
|
|
public interface FieldDefinedService {
|
||
|
|
|
||
|
|
List<TypeTreeDTO> getTree(String moduleName);
|
||
|
|
|
||
|
|
}
|