| | |
| | | <mapper namespace="oaWorkflowXmlServiceDaoImpl"> |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | <!-- 保存OA流程图信息 add by wuxw 2018-07-03 --> |
| | | <insert id="saveOaWorkflowXmlInfo" parameterType="Map"> |
| | | insert into oa_workflow_xml( |
| | |
| | | </insert> |
| | | |
| | | |
| | | |
| | | <!-- 查询OA流程图信息 add by wuxw 2018-07-03 --> |
| | | <select id="getOaWorkflowXmlInfo" parameterType="Map" resultType="Map"> |
| | | select t.status_cd,t.status_cd statusCd,t.xml_id,t.xml_id xmlId,t.store_id,t.store_id storeId,t.bpmn_xml,t.bpmn_xml bpmnXml,t.flow_id,t.flow_id flowId,t.svg_xml,t.svg_xml svgXml |
| | | select t.status_cd,t.status_cd statusCd,t.xml_id,t.xml_id xmlId,t.store_id,t.store_id |
| | | storeId,t.bpmn_xml,t.bpmn_xml bpmnXml,t.flow_id,t.flow_id flowId,t.svg_xml,t.svg_xml svgXml |
| | | from oa_workflow_xml t |
| | | where 1 =1 |
| | | <if test="statusCd !=null and statusCd != ''"> |
| | |
| | | </select> |
| | | |
| | | |
| | | |
| | | |
| | | <!-- 修改OA流程图信息 add by wuxw 2018-07-03 --> |
| | | <update id="updateOaWorkflowXmlInfo" parameterType="Map"> |
| | | update oa_workflow_xml t set t.status_cd = #{statusCd} |
| | |
| | | <if test="svgXml !=null and svgXml != ''"> |
| | | , t.svg_xml= #{svgXml} |
| | | </if> |
| | | where 1=1 <if test="xmlId !=null and xmlId != ''"> |
| | | where 1=1 |
| | | <if test="xmlId !=null and xmlId != ''"> |
| | | and t.xml_id= #{xmlId} |
| | | </if> |
| | | |