|
|
|
@ -5,8 +5,8 @@
|
|
|
|
|
<select id="pageList" resultType="com.logpm.basicdata.entity.BasicdataFactoryCategoryEntity"> |
|
|
|
|
select * |
|
|
|
|
from logpm_basicdata_factory_category |
|
|
|
|
where 1=1 |
|
|
|
|
and is_deleted = 0 |
|
|
|
|
where |
|
|
|
|
is_deleted = 0 |
|
|
|
|
<if test="param.type != null "> |
|
|
|
|
and type = #{param.type} |
|
|
|
|
</if> |
|
|
|
@ -28,6 +28,12 @@
|
|
|
|
|
<if test="param.thirds != null and param.thirds != ''"> |
|
|
|
|
and thirds = #{param.thirds} |
|
|
|
|
</if> |
|
|
|
|
|
|
|
|
|
<if test="param.materielName != null and param.materielName != ''"> |
|
|
|
|
and materiel_name like concat('%',#{param.materielName},'%') |
|
|
|
|
</if> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="findEntityByParam" resultType="com.logpm.basicdata.entity.BasicdataFactoryCategoryEntity"> |
|
|
|
|