|
@@ -14,6 +14,7 @@ import com.diagbot.vo.QcCasesEntryUpdataVO;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
@@ -52,6 +53,7 @@ public class QcCasesEntryHospitalController {
|
|
"isReject:单项否决 1-单项否决 0-非</br>isUsed:是否启用 0-未启用 1-启用")
|
|
"isReject:单项否决 1-单项否决 0-非</br>isUsed:是否启用 0-未启用 1-启用")
|
|
@PostMapping("/updataQcCasesEntry")
|
|
@PostMapping("/updataQcCasesEntry")
|
|
@SysLogger("updataQcCasesEntry")
|
|
@SysLogger("updataQcCasesEntry")
|
|
|
|
+ @Transactional
|
|
public RespDTO<Boolean> updataQcCasesEntry(@RequestBody @Valid QcCasesEntryUpdataVO qcCasesEntryUpdataVO) {
|
|
public RespDTO<Boolean> updataQcCasesEntry(@RequestBody @Valid QcCasesEntryUpdataVO qcCasesEntryUpdataVO) {
|
|
return RespDTO.onSuc(qcCasesEntryHospitalFacade.updataQcCasesEntrys(qcCasesEntryUpdataVO));
|
|
return RespDTO.onSuc(qcCasesEntryHospitalFacade.updataQcCasesEntrys(qcCasesEntryUpdataVO));
|
|
}
|
|
}
|