|
@@ -26,6 +26,8 @@ import com.jzg.service.EsmInsCompanyService;
|
|
|
import com.jzg.service.SysSystemService;
|
|
import com.jzg.service.SysSystemService;
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
|
|
+import org.slf4j.Logger;
|
|
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
import org.springframework.validation.annotation.Validated;
|
|
@@ -49,6 +51,8 @@ import java.util.stream.Collectors;
|
|
|
@RequestMapping("esmInsCompany")
|
|
@RequestMapping("esmInsCompany")
|
|
|
public class EsmInsCompanyController extends BaseController {
|
|
public class EsmInsCompanyController extends BaseController {
|
|
|
|
|
|
|
|
|
|
+ private static final Logger log = LoggerFactory.getLogger(EsmInsCompanyController.class);
|
|
|
|
|
+
|
|
|
@Autowired
|
|
@Autowired
|
|
|
private EsmInsCompanyService esmInsCompanyService;
|
|
private EsmInsCompanyService esmInsCompanyService;
|
|
|
|
|
|
|
@@ -179,6 +183,7 @@ public class EsmInsCompanyController extends BaseController {
|
|
|
@Operation(summary = "根据主键查询")
|
|
@Operation(summary = "根据主键查询")
|
|
|
@GetMapping(value = "/findById")
|
|
@GetMapping(value = "/findById")
|
|
|
public HttpResult<EsmInsCompany> findById(@RequestParam String id) {
|
|
public HttpResult<EsmInsCompany> findById(@RequestParam String id) {
|
|
|
|
|
+ log.debug("根据公司id[{}]查询公司信息",id);
|
|
|
return HttpResult.ok(esmInsCompanyService.getById(id));
|
|
return HttpResult.ok(esmInsCompanyService.getById(id));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -402,7 +407,7 @@ public class EsmInsCompanyController extends BaseController {
|
|
|
/**
|
|
/**
|
|
|
* @version
|
|
* @version
|
|
|
* @author: hxl
|
|
* @author: hxl
|
|
|
- * @Date: 2025/1/18 15:26
|
|
|
|
|
|
|
+ * @date: 2025/1/18 15:26
|
|
|
* @Description: 查询子订单的合作公司列表
|
|
* @Description: 查询子订单的合作公司列表
|
|
|
*/
|
|
*/
|
|
|
@Operation(summary = "查询子订单中的合作公司列表")
|
|
@Operation(summary = "查询子订单中的合作公司列表")
|