Files
klp-oa/klp-wms/src/main/resources/mapper/klp/WmsBatchMapper.xml

26 lines
1.1 KiB
XML
Raw Normal View History

<?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.mapper.WmsBatchMapper">
<resultMap type="com.klp.domain.WmsBatch" id="WmsBatchResult">
<result property="batchId" column="batch_id"/>
<result property="batchNo" column="batch_no"/>
<result property="processId" column="process_id"/>
<result property="totalQuantity" column="total_quantity"/>
<result property="mergeSource" column="merge_source"/>
<result property="estimatedStartTime" column="estimated_start_time"/>
<result property="estimatedEndTime" column="estimated_end_time"/>
<result property="batchStatus" column="batch_status"/>
<result property="delFlag" column="del_flag"/>
<result property="remark" column="remark"/>
<result property="createTime" column="create_time"/>
<result property="createBy" column="create_by"/>
<result property="updateTime" column="update_time"/>
<result property="updateBy" column="update_by"/>
</resultMap>
</mapper>