导入删除

This commit is contained in:
zhangheng 2024-12-30 10:02:00 +08:00
parent 7916b9e835
commit 36f54934e3

View File

@ -9,11 +9,7 @@ import com.xinelu.manage.vo.patientinfo.PatientInfoVo;
import com.xinelu.manage.vo.patientinfoimportmain.PatientInfoImportMainVO;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.apache.ibatis.annotations.Update;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.List;
@ -56,7 +52,7 @@ public class PatientInfoImportMainController extends BaseController {
@ApiOperation("删除单个患者导入信息列表")
@PostMapping("/updatePatientInfoImport")
public AjaxResult updatePatientInfoImport(PatientInfoVo patientInfoVo) {
public AjaxResult updatePatientInfoImport(@RequestBody PatientInfoVo patientInfoVo) {
return AjaxResult.success(patientInfoImportMainService.updatePatientInfoImport(patientInfoVo));
}
}