Browse Source

添加节点类型、标签等

master
陈裕财 4 years ago
parent
commit
8befe5a2a2
  1. 3
      xm-core/src/main/resources/mybatis/mapper/xm/core/dao/XmProductMapper.xml
  2. 3
      xm-core/src/main/resources/mybatis/mapper/xm/core/dao/XmProjectMapper.xml

3
xm-core/src/main/resources/mybatis/mapper/xm/core/dao/XmProductMapper.xml

@ -24,6 +24,9 @@
) )
</if> </if>
<if test="ctimeStart!=null and ctimeEnd!=null ">and ctime between #{ctimeStart} and #{ctimeEnd}</if> <if test="ctimeStart!=null and ctimeEnd!=null ">and ctime between #{ctimeStart} and #{ctimeEnd}</if>
<if test="del==null or del==''">
and res.del!='1'
</if>
</sql> </sql>
<select id="selectListMapByWhereWithState" parameterType="HashMap" resultType="HashMap"> <select id="selectListMapByWhereWithState" parameterType="HashMap" resultType="HashMap">

3
xm-core/src/main/resources/mybatis/mapper/xm/core/dao/XmProjectMapper.xml

@ -64,6 +64,9 @@
<if test="isTpl!=null and isTpl=='1'"> <if test="isTpl!=null and isTpl=='1'">
and (res.branch_id in( #{platformBranchId},#{myBranchId}) and res.is_tpl='1') and (res.branch_id in( #{platformBranchId},#{myBranchId}) and res.is_tpl='1')
</if> </if>
<if test="del==null or del==''">
and res.del!='1'
</if>
</sql> </sql>
<insert id="insertProcessApprova" <insert id="insertProcessApprova"
parameterType="HashMap" parameterType="HashMap"

Loading…
Cancel
Save