cigs4/ym-packing/src/main/resources/mapper/WoPowerLevelMapper.xml
2023-12-20 14:49:42 +08:00

47 lines
2.0 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="com.cnbm.packing.mapper.WoPowerLevelMapper">
<resultMap type="com.cnbm.packing.entity.WoPowerLevel" id="WoPowerLevelMap">
<id column="id" property="id" />
<id column="power_class" property="powerClass" />
<id column="pmpp_low" property="pmppLow" />
<id column="pmpp_high" property="pmppHigh" />
<id column="sap_material_num" property="sapMaterialNum" />
<id column="line_body" property="lineBody" />
<id column="lable_voc" property="lableVoc" />
<id column="lable_isc" property="lableIsc" />
<id column="lable_vmpp" property="lableVmpp" />
<id column="lable_impp" property="lableImpp" />
<id column="remark" property="remark" />
<id column="valid" property="valid" />
<id column="creator_id" property="creatorId" />
<id column="creator_name" property="creatorName" />
<id column="create_time" property="createTime" />
<id column="updater_id" property="updaterId" />
<id column="updater_name" property="updaterName" />
<id column="update_time" property="updateTime" />
<id column="version" property="version" />
</resultMap>
<select id="list" resultType="com.cnbm.packing.dto.WoPowerLevelDTO">
select * from t_wo_power_level
order by id asc
</select>
<select id="getPowerLevelByLineBodyAndPMPP" resultMap="WoPowerLevelMap">
select
*
from t_wo_power_level twpl
where
twpl.valid = 1
<if test="param.lineBody != null">
and twpl.line_body = #{param.lineBody}
</if>
<if test="param.pmpp != null">
and twpl.pmpp_high <![CDATA[ > ]]> #{param.pmpp} and twpl.pmpp_low <![CDATA[ <= ]]> #{param.pmpp}
</if>
limit 1
</select>
</mapper>