feat: 国际出港 出港仓库 仓位修改

This commit is contained in:
2026-01-14 18:39:15 +08:00
parent 76183823b0
commit 0a506617c7
9 changed files with 295 additions and 35 deletions

View File

@@ -274,6 +274,7 @@ data class GjcStorageUse(
var prefix: String? = null, // 运单前缀
var no: String? = null, // 运单号
var location: String? = null, // 库位号
var locationId: Long? = null, // 库位id
var storageCode: String? = null, // 库位号(兼容字段)
var uld: String? = null, // 板箱号
var inDate: String? = null, // 入库时间
@@ -281,7 +282,8 @@ data class GjcStorageUse(
var inId: String? = null, // 入库人(兼容字段)
var outDate: String? = null, // 出库时间
var outOpId: String? = null, // 出库人
var outId: String? = null // 出库人(兼容字段)
var outId: String? = null, // 出库人(兼容字段)
var cargoStatus: String? = null // 货物状态
) {
// ==================== UI扩展字段 ====================
@Transient

View File

@@ -818,6 +818,13 @@ interface Api {
@POST("IntExpStorageUse/updateClear")
suspend fun clearIntExpStorage(@Body data: RequestBody): BaseResultBean<Boolean>
/**
* 国际出港库位操作-修改库位
* 接口路径: /IntExpStorageUse/modifyStorage
*/
@POST("IntExpStorageUse/modifyStorage")
suspend fun modifyIntExpStorage(@Body data: RequestBody): BaseResultBean<Boolean>
/**
* 国际出港仓库-分页查询
* 接口路径: /IntExpStorageUse/pageQuery