|
@@ -26,6 +26,7 @@ import com.fs.company.vo.CompanyVoiceCallerListVO;
|
|
|
import com.fs.core.security.LoginUser;
|
|
|
import com.fs.core.security.SecurityUtils;
|
|
|
import com.fs.core.web.service.TokenService;
|
|
|
+import com.fs.his.vo.OptionsVO;
|
|
|
import lombok.Synchronized;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -246,5 +247,12 @@ public class CompanyController extends BaseController
|
|
|
return R.ok("提交成功,等待审核");
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("/allList")
|
|
|
+ public TableDataInfo allList()
|
|
|
+ {
|
|
|
+ List<OptionsVO> list = companyService.selectAllCompanyList();
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|