Merge #25 into master from cc_20260113_fix

feat:updateLineRegion

* cc_20260113_fix: (1 commits squashed)

  - feat:updateLineRegion

Signed-off-by: 正新 <accounts_6964c7bcd2a2c377c5bbd01b@mail.teambition.com>
Merged-by: 正新 <accounts_6964c7bcd2a2c377c5bbd01b@mail.teambition.com>

CR-link: https://codeup.aliyun.com/692ea314dec569489f6f167c/hangzhou/java/custom_zxjp/change/25
This commit is contained in:
正新
2026-01-13 07:17:35 +00:00
parent e62cd9bff9
commit 6a3d589d0c
3 changed files with 8 additions and 5 deletions

View File

@@ -182,8 +182,10 @@ public class LineInfoController {
@ApiOperation("修改所属大区/分公司")
@GetMapping("/updateLineRegion")
public ResponseResult<Integer> updateLineRegion(@RequestParam("regionId")Long regionId,@RequestParam("lineId")Long lineId) {
return ResponseResult.success(lineService.updateRegionId(regionId,lineId));
public ResponseResult<Integer> updateLineRegion(@RequestParam("regionId")Long regionId,
@RequestParam("investRegionId")Long investRegionId,
@RequestParam("lineId")Long lineId) {
return ResponseResult.success(lineService.updateRegionId(regionId,investRegionId,lineId));
}
@ApiOperation("判断是否有所属大区/分公司 0否 1是")
@GetMapping("/hasLineRegion")