weaver-hrm-organization/src/com/engine/organization/service/impl/FieldDefinedServiceImpl.java

25 lines
623 B
Java
Raw Normal View History

2022-06-14 09:36:47 +08:00
package com.engine.organization.service.impl;
import com.engine.core.impl.Service;
import com.engine.organization.entity.fieldset.TypeTreeDTO;
import com.engine.organization.service.FieldDefinedService;
2022-06-14 11:07:48 +08:00
import java.util.ArrayList;
2022-06-14 09:36:47 +08:00
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 class FieldDefinedServiceImpl extends Service implements FieldDefinedService {
@Override
public List<TypeTreeDTO> getTree(String moduleName) {
2022-06-14 11:07:48 +08:00
List<TypeTreeDTO> typeTreeDTOS = new ArrayList<>();
//int extendType =
return typeTreeDTOS;
2022-06-14 09:36:47 +08:00
}
}