| | |
| | | <result column="gmt_update_time" property="gmtUpdateTime" /> |
| | | <result column="update_by" property="updateBy" /> |
| | | <result column="create_by" property="createBy" /> |
| | | <result column="flowable_process_id" property="flowableProcessId" /> |
| | | <result column="process_def_id" property="processDefId" /> |
| | | <!-- <association property="id" column=""--> |
| | | </resultMap> |
| | | |
| | |
| | | <select id="getById" resultMap="BaseResultMap"> |
| | | SELECT |
| | | TPP.project_id, |
| | | TPP.flowable_process_id, |
| | | TPP.process_def_id, |
| | | TPP.id |
| | | FROM |
| | | t_project_process TPP |
| | |
| | | <select id="getPage" resultMap="BaseResultMap"> |
| | | SELECT |
| | | PI.*, |
| | | TPP.flowable_process_id |
| | | TPP.process_def_id |
| | | FROM |
| | | t_project_info PI |
| | | LEFT JOIN t_project_process TPP ON TPP.project_id = PI.id AND TPP.deleted = 0 AND PI.deleted = 0 |