Commit 94e601ef authored by hongguangwu's avatar hongguangwu

合同-date

parent 68455da1
...@@ -26,7 +26,8 @@ import io.swagger.v3.oas.annotations.security.SecurityRequirement; ...@@ -26,7 +26,8 @@ import io.swagger.v3.oas.annotations.security.SecurityRequirement;
import io.swagger.v3.oas.annotations.tags.Tag; import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor; import lombok.RequiredArgsConstructor;
import org.springframework.http.HttpHeaders; import org.springframework.http.HttpHeaders;
import org.springframework.web.bind.annotation.GetMapping; 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.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
...@@ -55,8 +56,8 @@ public class TEmployeeContractAuditController { ...@@ -55,8 +56,8 @@ public class TEmployeeContractAuditController {
* @return * @return
*/ */
@Operation(summary = "获取list", description = "获取list") @Operation(summary = "获取list", description = "获取list")
@GetMapping("/getContractAuditList") @PostMapping("/getContractAuditList")
public R<List<TEmployeeContractAudit>> getContractAuditList(TEmployeeContractAudit tEmployeeContractAudit) { public R<List<TEmployeeContractAudit>> getContractAuditList(@RequestBody TEmployeeContractAudit tEmployeeContractAudit) {
return R.ok(tEmployeeContractAuditService.list(Wrappers.query(tEmployeeContractAudit))); return R.ok(tEmployeeContractAuditService.list(Wrappers.query(tEmployeeContractAudit)));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment