feat: 国际出港 出港仓库

This commit is contained in:
2026-01-13 11:33:23 +08:00
parent ca81d8f8bb
commit ab4b1618c8
5 changed files with 52 additions and 8 deletions

View File

@@ -109,7 +109,6 @@ data class GjcMaWb(
// ==================== 关联列表(非数据库字段,用于展示) ====================
var haWbList: List<GjcHaWb>? = null, // 分单列表
@Transient
var storageUseList: List<GjcStorageUse>? = null, // 库位使用列表
@Transient
var attachList: List<ComAttach>? = null // 附件列表
@@ -277,10 +276,10 @@ data class GjcStorageUse(
var location: String? = null, // 库位号
var storageCode: String? = null, // 库位号(兼容字段)
var uld: String? = null, // 板箱号
var inDate: Date? = null, // 入库时间
var inDate: String? = null, // 入库时间
var inOpId: String? = null, // 入库人
var inId: String? = null, // 入库人(兼容字段)
var outDate: Date? = null, // 出库时间
var outDate: String? = null, // 出库时间
var outOpId: String? = null, // 出库人
var outId: String? = null // 出库人(兼容字段)
) {