|
@@ -0,0 +1,47 @@
|
|
|
+package com.citupro.module.menduner.flames.controller.app;
|
|
|
+
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+import com.citu.framework.common.pojo.CommonResult;
|
|
|
+import com.citupro.module.menduner.flames.controller.base.reqvo.enterprise.EnterpriseSchoolPracticeListReqVo;
|
|
|
+import com.citupro.module.menduner.flames.controller.base.vo.enterprise.EnterpriseSchoolPracticeListVo;
|
|
|
+import com.citupro.module.menduner.flames.service.proxy.EnterpriseProxyService;
|
|
|
+import org.checkerframework.checker.units.qual.A;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author code generator
|
|
|
+ * @date 2023-06-06 09:56:21
|
|
|
+ * @eo.api-type http
|
|
|
+ * @eo.groupName 火苗儿.企业
|
|
|
+ * @eo.path /flames
|
|
|
+ */
|
|
|
+@RequestMapping("/flames")
|
|
|
+@RestController
|
|
|
+public class EnterpriseController {
|
|
|
+
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ EnterpriseProxyService enterpriseService;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询指定学校在企业实习的情况
|
|
|
+ * @param requestParmterModel
|
|
|
+ * @return
|
|
|
+ * @eo.name 查询指定学校在企业实习的情况
|
|
|
+ * @eo.url /enterprise/school/practice/list
|
|
|
+ * @eo.method post
|
|
|
+ * @eo.request-type json
|
|
|
+ * @param enterpriseSchoolPracticeListReqVo
|
|
|
+ */
|
|
|
+ @PostMapping("/enterprise/school/practice/list")
|
|
|
+ public CommonResult<Page<EnterpriseSchoolPracticeListVo>> getEnterpriseSchoolPracticeList(@RequestBody EnterpriseSchoolPracticeListReqVo enterpriseSchoolPracticeListReqVo) {
|
|
|
+ return enterpriseService.getEnterpriseSchoolPracticeList(enterpriseSchoolPracticeListReqVo);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|