This commit is contained in:
2026-06-06 17:08:51 +08:00
9 changed files with 799 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
<?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.WmsMaterialWarningMapper">
<resultMap type="com.klp.domain.WmsMaterialWarning" id="WmsMaterialWarningResult">
<result property="warningId" column="warning_id"/>
<result property="coilId" column="coil_id"/>
<result property="warningType" column="warning_type"/>
<result property="theoreticalVal" column="theoretical_val"/>
<result property="actualVal" column="actual_val"/>
<result property="allowDeviation" column="allow_deviation"/>
<result property="deviationValue" column="deviation_value"/>
<result property="deviationRate" column="deviation_rate"/>
<result property="warningLevel" column="warning_level"/>
<result property="warningMsg" column="warning_msg"/>
<result property="warningStatus" column="warning_status"/>
<result property="handleBy" column="handle_by"/>
<result property="handleTime" column="handle_time"/>
<result property="handleRemark" column="handle_remark"/>
<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>