2026-01-04 13:36:18 +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.mes.eqp.mapper.EqpAuxiliaryMaterialMapper">
|
|
|
|
|
|
|
|
|
|
<resultMap type="com.klp.mes.eqp.domain.EqpAuxiliaryMaterial" id="EqpAuxiliaryMaterialResult">
|
|
|
|
|
<result property="auxiliaryId" column="auxiliary_id"/>
|
|
|
|
|
<result property="auxiliaryName" column="auxiliary_name"/>
|
|
|
|
|
<result property="materialCategory" column="material_category"/>
|
|
|
|
|
<result property="auxiliaryModel" column="auxiliary_model"/>
|
|
|
|
|
<result property="unit" column="unit"/>
|
|
|
|
|
<result property="equipmentId" column="equipment_id"/>
|
2026-03-19 15:46:20 +08:00
|
|
|
<result property="unitTeam" column="unit_team"/>
|
2026-01-04 13:36:18 +08:00
|
|
|
<result property="quantity" column="quantity"/>
|
|
|
|
|
<result property="createBy" column="create_by"/>
|
|
|
|
|
<result property="updateBy" column="update_by"/>
|
|
|
|
|
<result property="createTime" column="create_time"/>
|
|
|
|
|
<result property="updateTime" column="update_time"/>
|
|
|
|
|
<result property="delFlag" column="del_flag"/>
|
|
|
|
|
<result property="remark" column="remark"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper>
|