|
@@ -7,6 +7,7 @@ import cn.cslg.report.service.business.AssoTaskPersonelService;
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.context.annotation.Lazy;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
@@ -17,8 +18,9 @@ import java.io.IOException;
|
|
|
@RequestMapping(Constants.REPORT_API + "/AssoTaskPersonel")
|
|
|
@RequiredArgsConstructor(onConstructor_ = {@Lazy})
|
|
|
public class AssoTaskPersonelController {
|
|
|
-
|
|
|
+ @Autowired
|
|
|
public final AssoTaskPersonelService assoTaskPersonelService;
|
|
|
+ @Autowired
|
|
|
private final LoginUtils loginUtils;
|
|
|
@GetMapping("/getPartClient")
|
|
|
@Operation(summary = "分页获取对比专利")
|