新增转租管理;

结构调整
This commit is contained in:
2023-06-17 12:39:19 +08:00
parent ff87369bab
commit d61e7b163d
20 changed files with 1107 additions and 3 deletions

View File

@@ -100,7 +100,7 @@ public class TowerContractController extends BaseController {
@PutMapping()
public ApiResult<?> update(@RequestBody TowerContract towerContract) {
if (towerContractService.updateById(towerContract)) {
return success("修改成功");
return success(towerContract.getContractId());
}
return fail("修改失败");
}