| | |
| | | |
| | | <!-- 修改路由信息 add by wuxw 2018-07-03 --> |
| | | <update id="updateMenuGroupInfo" parameterType="Map"> |
| | | update m_menu_group t set |
| | | <if test="statusCd !=null and statusCd != ''"> |
| | | t.status_cd = #{statusCd}, |
| | | </if> |
| | | <if test="name !=null and name != ''"> |
| | | t.name= #{name}, |
| | | </if> |
| | | <if test="icon !=null and icon != ''"> |
| | | t.icon= #{icon}, |
| | | </if> |
| | | <if test="label !=null and label != ''"> |
| | | t.label= #{label}, |
| | | </if> |
| | | <if test="seq !=null "> |
| | | t.seq= #{seq}, |
| | | </if> |
| | | <if test="description !=null and description != ''"> |
| | | t.description= #{description} |
| | | </if> |
| | | update m_menu_group t |
| | | <set> |
| | | <if test="statusCd !=null and statusCd != ''"> |
| | | t.status_cd = #{statusCd}, |
| | | </if> |
| | | <if test="name !=null and name != ''"> |
| | | t.name= #{name}, |
| | | </if> |
| | | <if test="icon !=null and icon != ''"> |
| | | t.icon= #{icon}, |
| | | </if> |
| | | <if test="label !=null and label != ''"> |
| | | t.label= #{label}, |
| | | </if> |
| | | <if test="seq !=null "> |
| | | t.seq= #{seq}, |
| | | </if> |
| | | <if test="description !=null and description != ''"> |
| | | t.description= #{description} |
| | | </if> |
| | | </set> |
| | | where t.g_id= #{gId} |
| | | |
| | | </update> |