xg-v1.0
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?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.ruoyi.workflow.mapper.WfCategoryMapper">
|
||||
|
||||
<resultMap type="com.ruoyi.workflow.domain.WfCategory" id="FlowCategoryResult">
|
||||
<result property="categoryId" column="category_id"/>
|
||||
<result property="categoryName" column="category_name"/>
|
||||
<result property="code" column="code"/>
|
||||
<result property="createBy" column="create_by"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<result property="updateBy" column="update_by"/>
|
||||
<result property="updateTime" column="update_time"/>
|
||||
<result property="remark" column="remark"/>
|
||||
<result property="delFlag" column="del_flag"/>
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?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.ruoyi.workflow.mapper.WfCopyMapper">
|
||||
|
||||
<resultMap type="com.ruoyi.workflow.domain.WfCopy" id="WfCopyResult">
|
||||
<result property="copyId" column="copy_id"/>
|
||||
<result property="title" column="title"/>
|
||||
<result property="processId" column="process_id"/>
|
||||
<result property="processName" column="process_name"/>
|
||||
<result property="categoryId" column="category_id"/>
|
||||
<result property="taskId" column="taskId"/>
|
||||
<result property="userId" column="user_id"/>
|
||||
<result property="createBy" column="create_by"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<result property="updateBy" column="update_by"/>
|
||||
<result property="updateTime" column="update_time"/>
|
||||
<result property="delFlag" column="del_flag"/>
|
||||
</resultMap>
|
||||
|
||||
|
||||
</mapper>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?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.ruoyi.workflow.mapper.WfDeployFormMapper">
|
||||
|
||||
<resultMap type="com.ruoyi.workflow.domain.WfDeployForm" id="WfDeployFormResult">
|
||||
<result property="deployId" column="deploy_id"/>
|
||||
<result property="formKey" column="form_key"/>
|
||||
<result property="nodeKey" column="node_key"/>
|
||||
<result property="nodeName" column="node_name"/>
|
||||
<result property="content" column="content"/>
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
@@ -0,0 +1,27 @@
|
||||
<?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.ruoyi.workflow.mapper.WfFormMapper">
|
||||
|
||||
<resultMap type="com.ruoyi.workflow.domain.WfForm" id="WfFormResult">
|
||||
<result property="formId" column="form_id"/>
|
||||
<result property="formName" column="form_name"/>
|
||||
<result property="content" column="content"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<result property="updateTime" column="update_time"/>
|
||||
<result property="createBy" column="create_by"/>
|
||||
<result property="updateBy" column="update_by"/>
|
||||
<result property="remark" column="remark"/>
|
||||
</resultMap>
|
||||
|
||||
<select id="selectFormVoList" resultType="com.ruoyi.workflow.domain.vo.WfFormVo">
|
||||
SELECT
|
||||
t1.form_id AS formId,
|
||||
t1.form_name AS formName,
|
||||
t1.content AS content
|
||||
FROM wf_form t1
|
||||
LEFT JOIN wf_deploy_form t2 ON t1.form_id = t2.form_id
|
||||
${ew.getCustomSqlSegment}
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user