Files
klp-oa/klp-mes/src/main/resources/mapper/qc/WmsCommonDefectMapper.xml
2025-07-25 14:26:24 +08:00

20 lines
800 B
XML

<?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.mes.qc.mapper.WmsCommonDefectMapper">
<resultMap type="com.klp.mes.qc.domain.WmsCommonDefect" id="WmsCommonDefectResult">
<result property="defectId" column="defect_id"/>
<result property="defectName" column="defect_name"/>
<result property="createBy" column="create_by"/>
<result property="createTime" column="create_time"/>
<result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/>
<result property="delFlag" column="del_flag"/>
<result property="remark" column="remark"/>
</resultMap>
</mapper>