mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
1、组织资金、销售明细、购买记录controller单元测试完善;2、token管理service、controller单元测试完善;3、新增/贴皮管理http method错误修正;
This commit is contained in:
+2
-2
@@ -95,13 +95,13 @@ public class VeneerController {
|
||||
return success(veneerService.get(id));
|
||||
}
|
||||
|
||||
@PutMapping("")
|
||||
@PostMapping("")
|
||||
@Operation(summary = "创建贴皮")
|
||||
public CommonResult<Long> createVeneer(@Valid @RequestBody VeneerSaveReqVO reqVO) {
|
||||
return success(veneerService.create(reqVO));
|
||||
}
|
||||
|
||||
@PostMapping("")
|
||||
@PutMapping("")
|
||||
@Operation(summary = "编辑贴皮")
|
||||
public CommonResult<Boolean> updateVeneer(@Valid @RequestBody VeneerSaveReqVO reqVO) {
|
||||
return success(veneerService.update(reqVO) == 1);
|
||||
|
||||
Reference in New Issue
Block a user