You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.4 KiB
XML
56 lines
2.4 KiB
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="org.dromara.mes.mapper.BaseStructureBomMapper">
|
|
|
|
<resultMap type="BaseStructureBom" id="BaseStructureBomResult">
|
|
<result property="structureBomId" column="structure_bom_id"/>
|
|
<result property="tenantId" column="tenant_id"/>
|
|
<result property="parentId" column="parent_id"/>
|
|
<result property="materialTypeId" column="material_type_id"/>
|
|
<result property="materialTypeName" column="material_type_name"/>
|
|
<result property="structureBomDesc" column="structure_bom_desc"/>
|
|
<result property="structureBomVersion" column="structure_bom_version"/>
|
|
<result property="ancestors" column="ancestors"/>
|
|
<result property="level" column="level"/>
|
|
<result property="topFlag" column="top_flag"/>
|
|
<result property="activeFlag" column="active_flag"/>
|
|
<result property="remark" column="remark"/>
|
|
<result property="createDept" column="create_dept"/>
|
|
<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="materialTypeCode" column="material_type_code"/>
|
|
</resultMap>
|
|
|
|
|
|
<select id="selectStructureBomJoinMaterialTypeList" parameterType="BaseStructureBomBo" resultType="BaseStructureBomVo">
|
|
select
|
|
bsb.structure_bom_id,
|
|
bsb.material_type_id,
|
|
bsb.parent_id,
|
|
bsb.create_time,
|
|
bsb.update_time,
|
|
bmt.matrial_type_code as material_type_code,
|
|
bmt.matrial_type_name as material_type_name
|
|
from base_structure_bom bsb
|
|
left join base_material_type bmt on bsb.material_type_id = bmt.matrial_type_id
|
|
<where>
|
|
<if test="materialTypeCode != null and materialTypeCode != ''">and bmt.matrial_type_code like concat('%', #{materialTypeCode},
|
|
'%')
|
|
</if>
|
|
<if test="materialTypeName != null and materialTypeName != ''">and bmt.matrial_type_name like concat('%', #{materialTypeName},
|
|
'%')
|
|
</if>
|
|
<if test="parentId != null ">and bsb.parent_id = #{parentId}</if>
|
|
|
|
</where>
|
|
order by bsb.structure_bom_id desc
|
|
</select>
|
|
|
|
|
|
</mapper>
|