|
|
|
@ -295,4 +295,18 @@ public class TestInformationController { |
|
|
|
TestInformationEntity row = testInformationService.getTestRemarkEntry(data); |
|
|
|
return R.ok().put("row", row); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @description: 更新测试主信息的材料总金额 |
|
|
|
* @author: AI Assistant |
|
|
|
* @date: 2025/11/18 |
|
|
|
* @param: [data] |
|
|
|
* @return: com.spring.common.utils.R |
|
|
|
**/ |
|
|
|
@PostMapping(value="/updateMaterialTotalAmount") |
|
|
|
@ResponseBody |
|
|
|
public R updateMaterialTotalAmount(@RequestBody TestInformationVo data) { |
|
|
|
testInformationService.updateMaterialTotalAmount(data); |
|
|
|
return R.ok("更新成功"); |
|
|
|
} |
|
|
|
} |