|
|
@@ -0,0 +1,31 @@
|
|
|
+package com.fs.company.controller.his;
|
|
|
+
|
|
|
+import com.fs.common.core.controller.BaseController;
|
|
|
+import com.fs.common.core.domain.AjaxResult;
|
|
|
+import com.fs.his.service.IFsShareMaterialService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 分享素材Controller
|
|
|
+ *
|
|
|
+ * @author fs
|
|
|
+ * @date 2026-06-25
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("/company/shareMaterial")
|
|
|
+public class FsShareMaterialController extends BaseController
|
|
|
+{
|
|
|
+ @Autowired
|
|
|
+ private IFsShareMaterialService fsShareMaterialService;
|
|
|
+
|
|
|
+
|
|
|
+ @GetMapping("shareMaterialOptions")
|
|
|
+ public AjaxResult shareMaterialOptions(){
|
|
|
+ return AjaxResult.success(fsShareMaterialService.listOptions());
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|