2026-06-22 16:38:02 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
|
<!DOCTYPE mapper
|
|
|
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
|
|
<mapper namespace="com.klp.flow.mapper.InvCountPlanWarehouseMapper">
|
|
|
|
|
|
|
|
|
|
<resultMap type="com.klp.flow.domain.InvCountPlanWarehouse" id="InvCountPlanWarehouseResult">
|
|
|
|
|
<result property="relId" column="rel_id"/>
|
|
|
|
|
<result property="planId" column="plan_id"/>
|
2026-06-27 14:11:33 +08:00
|
|
|
<result property="warehouseIds" column="warehouse_id"/>
|
2026-06-22 16:38:02 +08:00
|
|
|
<result property="warehouseName" column="warehouse_name"/>
|
2026-06-27 14:11:33 +08:00
|
|
|
<result property="actualWarehouseIds" column="actual_warehouse_id"/>
|
2026-06-22 16:38:02 +08:00
|
|
|
<result property="actualWarehouseName" column="actual_warehouse_name"/>
|
|
|
|
|
<result property="systemCoilCount" column="system_coil_count"/>
|
|
|
|
|
<result property="systemTotalWeight" column="system_total_weight"/>
|
|
|
|
|
<result property="actualCoilCount" column="actual_coil_count"/>
|
|
|
|
|
<result property="actualTotalWeight" column="actual_total_weight"/>
|
|
|
|
|
<result property="isConsistent" column="is_consistent"/>
|
|
|
|
|
<result property="ioStartTime" column="io_start_time"/>
|
|
|
|
|
<result property="ioEndTime" column="io_end_time"/>
|
|
|
|
|
<result property="snapshotIoRecord" column="snapshot_io_record"/>
|
|
|
|
|
<result property="snapshotCoilLogic" column="snapshot_coil_logic"/>
|
|
|
|
|
<result property="snapshotCoilActual" column="snapshot_coil_actual"/>
|
|
|
|
|
<result property="snapshotCoilStats" column="snapshot_coil_stats"/>
|
|
|
|
|
<result property="delFlag" column="del_flag"/>
|
|
|
|
|
<result property="createTime" column="create_time"/>
|
|
|
|
|
<result property="createBy" column="create_by"/>
|
|
|
|
|
<result property="updateTime" column="update_time"/>
|
|
|
|
|
<result property="updateBy" column="update_by"/>
|
|
|
|
|
<result property="remark" column="remark"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper>
|