|
@@ -26,7 +26,7 @@ import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
/**
|
|
|
* etypeController
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ljx
|
|
|
* @date 2025-02-07
|
|
|
*/
|
|
@@ -49,6 +49,14 @@ public class EnterpriseTypeController extends BaseController
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
|
+ @PreAuthorize("@ss.hasPermi('etype:etype:allList')")
|
|
|
+ @GetMapping("/list/all")
|
|
|
+ public List<EnterpriseType> listAll(EnterpriseType enterpriseType)
|
|
|
+ {
|
|
|
+ startPage();
|
|
|
+ List<EnterpriseType> list = enterpriseTypeService.selectEnterpriseTypeList(enterpriseType);
|
|
|
+ return list;
|
|
|
+ }
|
|
|
/**
|
|
|
* 导出etype列表
|
|
|
*/
|