|
...
|
...
|
@@ -28,6 +28,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<result property="updateBy" column="update_by"/>
|
|
|
|
<result property="updateTime" column="update_time"/>
|
|
|
|
<result property="procInsId" column="proc_ins_id"/>
|
|
|
|
<result property="procDdfId" column="proc_def_id"/>
|
|
|
|
<result property="deployId" column="deploy_id"/>
|
|
|
|
</resultMap>
|
|
|
|
<resultMap type="com.ruoyi.compliancemanagement.model.TblContractModel" id="TblContractModelResult">
|
|
|
|
<result property="id" column="id"/>
|
|
...
|
...
|
@@ -53,6 +55,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<result property="updateBy" column="update_by"/>
|
|
|
|
<result property="updateTime" column="update_time"/>
|
|
|
|
<result property="procInsId" column="proc_ins_id"/>
|
|
|
|
<result property="procDefId" column="proc_def_id"/>
|
|
|
|
<result property="deployId" column="deploy_id"/>
|
|
|
|
</resultMap>
|
|
|
|
<select id="selectList" resultMap="TblContractModelResult">
|
|
|
|
SELECT
|
|
...
|
...
|
@@ -77,7 +81,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
a.create_by,
|
|
|
|
a.create_time,
|
|
|
|
a.update_by,
|
|
|
|
a.update_time,b.proc_ins_id
|
|
|
|
a.update_time,b.proc_ins_id,b.proc_def_id,b.deploy_id
|
|
|
|
FROM
|
|
|
|
tbl_contract a
|
|
|
|
LEFT JOIN tbl_business_workflow b ON a.id = b.business_id
|
...
|
...
|
|