feat: 国际进港舱单主分单独立选择及分离删除接口

主分单选择解除联动,删除操作使用独立接口,先删分单再删主单

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-01 18:23:20 +08:00
parent 43acf0a2de
commit 936af73ec0
5 changed files with 64 additions and 42 deletions

View File

@@ -1280,6 +1280,18 @@ interface Api {
@POST("IntImpManiFest/deleteFestList")
suspend fun gjjManifestDeleteBatch(@Body data: RequestBody): BaseResultBean<Any>
/**
* 删除舱单(主单)- 请求体为 GjjManifest 对象数组
*/
@POST("IntImpManifest/deleteManifest")
suspend fun intImpManifestDeleteManifest(@Body data: RequestBody): BaseResultBean<Any>
/**
* 删除分单 - 请求体为 GjjHaWb 对象数组
*/
@POST("IntImpManifest/deleteHawb")
suspend fun intImpManifestDeleteHawb(@Body data: RequestBody): BaseResultBean<Any>
/**
* 新增-国际进港舱单
*/